BitmapHelper.blank constructor

BitmapHelper.blank(
  1. int width,
  2. int height
)

Implementation

BitmapHelper.blank(
  this.width,
  this.height,
) : content = Uint8List.fromList(
        List.filled(width * height * bitmapPixelLength, 0),
      );