8 lines
180 B
Dart
8 lines
180 B
Dart
class OrderBy {
|
|
final String key;
|
|
final bool descending;
|
|
|
|
const OrderBy(this.key, {this.descending = false});
|
|
|
|
String compile() => descending ? '$key DESC' : '$key ASC';
|
|
}
|