ImageColor constructor

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

Implementation

ImageColor({required int width, required int height})
    : super(
          height: height,
          width: width,
          maxValue: 255,
          defaultValue: Color.black());