saveFile method

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

Implementation

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