UserSchema constructor
UserSchema({
- String? type,
- Struct? schema,
- Iterable<
AuthenticatorType> ? possibleAuthenticators,
Implementation
factory UserSchema({
$core.String? type,
$1.Struct? schema,
$core.Iterable<AuthenticatorType>? possibleAuthenticators,
}) {
final result = create();
if (type != null) result.type = type;
if (schema != null) result.schema = schema;
if (possibleAuthenticators != null)
result.possibleAuthenticators.addAll(possibleAuthenticators);
return result;
}