toEndpointConfigSortKey method

EndpointConfigSortKey toEndpointConfigSortKey()

Implementation

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