toAtime method

Atime toAtime()

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');
}