compressToWebp static method
Compresses bytes to WEBP.
Only an Android.
Implementation
static Future<Uint8List> compressToWebp(
Uint8List pngBytes, double width, double height,
[int quality = 100]) async {
return await ImageGeneral.compressToWebp(pngBytes,
width: width, height: height, quality: quality);
}