value property

String value

Implementation

String get value {
  switch (this) {
    case Sort.ASC:
      return "ASC";
    case Sort.DESC:
    default:
      return "DESC";
  }
}