RawImageProvider constructor

RawImageProvider(
  1. Uint8List _pixels,
  2. int _width,
  3. int _height
)

Implementation

RawImageProvider(this._pixels, this._width, this._height)
    : key = RawImageKey(_width, _height, _pixels.hashCode);