ImageMono constructor

ImageMono({
  1. required int width,
  2. required int height,
})

Create a new monochromatic image (values go from 0 to 1)

Implementation

ImageMono({required int width, required int height})
    : super(height: height, width: width, maxValue: 1, defaultValue: false);