toAppImageConfigSortKey method

AppImageConfigSortKey toAppImageConfigSortKey()

Implementation

AppImageConfigSortKey toAppImageConfigSortKey() {
  switch (this) {
    case 'CreationTime':
      return AppImageConfigSortKey.creationTime;
    case 'LastModifiedTime':
      return AppImageConfigSortKey.lastModifiedTime;
    case 'Name':
      return AppImageConfigSortKey.name;
  }
  throw Exception('$this is not known in enum AppImageConfigSortKey');
}