toServiceField method

ServiceField toServiceField()

Implementation

ServiceField toServiceField() {
  switch (this) {
    case 'TAGS':
      return ServiceField.tags;
  }
  throw Exception('$this is not known in enum ServiceField');
}