toClientBroker method

ClientBroker toClientBroker()

Implementation

ClientBroker toClientBroker() {
  switch (this) {
    case 'TLS':
      return ClientBroker.tls;
    case 'TLS_PLAINTEXT':
      return ClientBroker.tlsPlaintext;
    case 'PLAINTEXT':
      return ClientBroker.plaintext;
  }
  throw Exception('$this is not known in enum ClientBroker');
}