toAtime method
Implementation
Atime toAtime() {
switch (this) {
case 'NONE':
return Atime.none;
case 'BEST_EFFORT':
return Atime.bestEffort;
}
throw Exception('$this is not known in enum Atime');
}
Atime toAtime() {
switch (this) {
case 'NONE':
return Atime.none;
case 'BEST_EFFORT':
return Atime.bestEffort;
}
throw Exception('$this is not known in enum Atime');
}