ByteMatrix constructor

ByteMatrix(
  1. int _width,
  2. int _height
)

Implementation

ByteMatrix(this._width, this._height)
    : _bytes = List.generate(_height, (index) => Uint8List(_width));