toPresetListBy method
Implementation
PresetListBy toPresetListBy() {
switch (this) {
case 'NAME':
return PresetListBy.name;
case 'CREATION_DATE':
return PresetListBy.creationDate;
case 'SYSTEM':
return PresetListBy.system;
}
throw Exception('$this is not known in enum PresetListBy');
}