AuthenticatorTransport.fromPlatformType constructor

AuthenticatorTransport.fromPlatformType(
  1. String value
)

Implementation

factory AuthenticatorTransport.fromPlatformType(String value) {
  switch (value) {
    case 'internal':
      return AuthenticatorTransport.Internal;
    default:
      throw ArgumentError.value(value);
  }
}