compressImage method

Future<String?> compressImage(
  1. String fileName, {
  2. int quality = 70,
})

Implementation

Future<String?> compressImage(String fileName, {int quality = 70}) {
  throw UnimplementedError('compressImage() has not been implemented.');
}