toPng method

Future<Uint8List> toPng()

Convert to a PNG image

Implementation

Future<Uint8List> toPng() async {
  final image = await toImage();
  final data = await image.toByteData(format: ui.ImageByteFormat.png);
  return data!.buffer.asUint8List();
}