toAppSortKey method
Implementation
AppSortKey toAppSortKey() {
switch (this) {
case 'CreationTime':
return AppSortKey.creationTime;
}
throw Exception('$this is not known in enum AppSortKey');
}
AppSortKey toAppSortKey() {
switch (this) {
case 'CreationTime':
return AppSortKey.creationTime;
}
throw Exception('$this is not known in enum AppSortKey');
}