toStorageType method

StorageType toStorageType()

Implementation

StorageType toStorageType() {
  switch (this) {
    case 'UNLIMITED':
      return StorageType.unlimited;
    case 'QUOTA':
      return StorageType.quota;
  }
  throw Exception('$this is not known in enum StorageType');
}