CreateUserSchemaRequest constructor
CreateUserSchemaRequest({
- String? type,
- Struct? schema,
- Iterable<
AuthenticatorType> ? possibleAuthenticators,
Implementation
factory CreateUserSchemaRequest({
$core.String? type,
$2.Struct? schema,
$core.Iterable<$3.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;
}