toNetworkEapMethod method

NetworkEapMethod toNetworkEapMethod()

Implementation

NetworkEapMethod toNetworkEapMethod() {
  switch (this) {
    case 'EAP_TLS':
      return NetworkEapMethod.eapTls;
  }
  throw Exception('$this is not known in enum NetworkEapMethod');
}