toStorageClass method

StorageClass toStorageClass()

Implementation

StorageClass toStorageClass() {
  switch (this) {
    case 'TEMPORAL':
      return StorageClass.temporal;
  }
  throw Exception('$this is not known in enum StorageClass');
}