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