fromString static method

SupportedImageExtensions fromString(
  1. String str
)

Implementation

static SupportedImageExtensions fromString(String str) {
  switch (str) {
    case 'jpg':
      return jpg;
    case 'png':
      return png;
    case 'jpeg':
      return jpeg;
    default:
      throw SplashMasterException(
        message: 'The image must be jpg, png or jpeg.',
      );
  }
}