toTlsPolicy method

TlsPolicy toTlsPolicy()

Implementation

TlsPolicy toTlsPolicy() {
  switch (this) {
    case 'Require':
      return TlsPolicy.require;
    case 'Optional':
      return TlsPolicy.optional;
  }
  throw Exception('$this is not known in enum TlsPolicy');
}