toImageActionType method

ImageActionType toImageActionType()

Implementation

ImageActionType toImageActionType() {
  switch (this) {
    case 'EXPIRE':
      return ImageActionType.expire;
  }
  throw Exception('$this is not known in enum ImageActionType');
}