getFormat static method

CompressFormat? getFormat(
  1. String value
)

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;
  }
}