MemoryImage constructor

const MemoryImage(Uint8List bytes, { double scale: 1.0 })

Creates an object that decodes a Uint8List buffer as an image.

The arguments must not be null.

Implementation

const MemoryImage(this.bytes, { this.scale = 1.0 })
    : assert(bytes != null),
      assert(scale != null);