getUpperString property

String get getUpperString

Get the SQL ORDER BY string representation

Implementation

String get getUpperString {
  switch (this) {
    case DatabaseOredrs.asc:
      return 'ASC';
    case DatabaseOredrs.desc:
      return 'DESC';
  }
}