platform/angel_orm/lib/src/order_by.dart
2019-08-17 17:42:55 -04:00

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';
}