toSortOrder method
Implementation
SortOrder toSortOrder() {
switch (this) {
case 'ASC':
return SortOrder.asc;
case 'DESC':
return SortOrder.desc;
}
throw Exception('$this is not known in enum SortOrder');
}
SortOrder toSortOrder() {
switch (this) {
case 'ASC':
return SortOrder.asc;
case 'DESC':
return SortOrder.desc;
}
throw Exception('$this is not known in enum SortOrder');
}