toDimensionType method

DimensionType toDimensionType()

Implementation

DimensionType toDimensionType() {
  switch (this) {
    case 'TOPIC_FILTER':
      return DimensionType.topicFilter;
  }
  throw Exception('$this is not known in enum DimensionType');
}