toSchemaElement method

SchemaElement toSchemaElement()

Implementation

SchemaElement toSchemaElement() {
  switch (this) {
    case 'RESOURCES':
      return SchemaElement.resources;
  }
  throw Exception('$this is not known in enum SchemaElement');
}