toImageFormat method

ImageFormat toImageFormat()

Implementation

ImageFormat toImageFormat() {
  switch (this) {
    case 'JSON':
      return ImageFormat.json;
    case 'JSONEmbedded':
      return ImageFormat.jSONEmbedded;
    case 'JSONDetached':
      return ImageFormat.jSONDetached;
  }
  throw Exception('$this is not known in enum ImageFormat');
}