toPreserveDeletedFiles method
Implementation
PreserveDeletedFiles toPreserveDeletedFiles() {
switch (this) {
case 'PRESERVE':
return PreserveDeletedFiles.preserve;
case 'REMOVE':
return PreserveDeletedFiles.remove;
}
throw Exception('$this is not known in enum PreserveDeletedFiles');
}