compress method
void
compress(
- dynamic onBytesLoaded(),
- dynamic onLibraryImageLoaded(
- Image
compressed image is shown for user's reference
Implementation
void compress(Function() onBytesLoaded, Function(Library.Image) onLibraryImageLoaded) async {
final libraryImage = getCompressedImage(imageBytes);
onBytesLoaded.call();
onLibraryImageLoaded.call(libraryImage);
}