save method

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

Implementation

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