encode method

Future<Uint8List> encode(
  1. Uint8List bytes,
  2. int width,
  3. int height, {
  4. required int quality,
  5. String? mime,
})

Implementation

Future<Uint8List> encode(
  Uint8List bytes,
  int width,
  int height, {
  required int quality,
  String? mime,
}) {
  throw UnimplementedError('encode() has not been implemented.');
}