toAppSortKey method

AppSortKey toAppSortKey()

Implementation

AppSortKey toAppSortKey() {
  switch (this) {
    case 'CreationTime':
      return AppSortKey.creationTime;
  }
  throw Exception('$this is not known in enum AppSortKey');
}