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