processWithImageToByteData method

Future<ByteData?> processWithImageToByteData(
  1. Uint8List imageData,
  2. int width,
  3. int height
)

Implementation

Future<ByteData?> processWithImageToByteData(
  Uint8List imageData,
  int width,
  int height,
) async {
  return PixelfreePlatform.instance.processWithImageToByteData(
    imageData,
    width,
    height,
  );
}