toQueueListBy method

QueueListBy toQueueListBy()

Implementation

QueueListBy toQueueListBy() {
  switch (this) {
    case 'NAME':
      return QueueListBy.name;
    case 'CREATION_DATE':
      return QueueListBy.creationDate;
  }
  throw Exception('$this is not known in enum QueueListBy');
}