toClientAuthenticationType method

ClientAuthenticationType toClientAuthenticationType()

Implementation

ClientAuthenticationType toClientAuthenticationType() {
  switch (this) {
    case 'SmartCard':
      return ClientAuthenticationType.smartCard;
  }
  throw Exception('$this is not known in enum ClientAuthenticationType');
}