alphabetic top-level property
Implementation
SortF alphabetic = (String sortField) => (a, b) {
return a[sortField].toLowerCase().compareTo(b[sortField].toLowerCase());
};
SortF alphabetic = (String sortField) => (a, b) {
return a[sortField].toLowerCase().compareTo(b[sortField].toLowerCase());
};