BGRAImage constructor

BGRAImage({
  1. required Uint8List data,
  2. required int width,
  3. required int height,
  4. required Image original,
})

Implementation

BGRAImage({
  required this.data,
  required this.width,
  required this.height,
  required this.original,
});