toMtime method

Mtime toMtime()

Implementation

Mtime toMtime() {
  switch (this) {
    case 'NONE':
      return Mtime.none;
    case 'PRESERVE':
      return Mtime.preserve;
  }
  throw Exception('$this is not known in enum Mtime');
}