getFormat static method
Implementation
static CompressFormat? getFormat(String value) {
switch (value) {
case 'jpeg':
return CompressFormat.jpeg;
case 'png':
return CompressFormat.png;
case 'webp':
return CompressFormat.webp;
case 'heic':
return CompressFormat.heic;
default:
return null;
}
}