toPngBytes method

Future<Uint8List?> toPngBytes()

Image to png bytes

Implementation

Future<Uint8List?> toPngBytes() {
  return toByteData(format: ui.ImageByteFormat.png)
      .then((value) => value?.buffer.asUint8List());
}