toUrlType method

UrlType toUrlType()

Implementation

UrlType toUrlType() {
  switch (this) {
    case 'FLINK_DASHBOARD_URL':
      return UrlType.flinkDashboardUrl;
  }
  throw Exception('$this is not known in enum UrlType');
}