UpdateUserSchemaRequest constructor

UpdateUserSchemaRequest({
  1. String? id,
  2. String? type,
  3. Struct? schema,
  4. Iterable<AuthenticatorType>? possibleAuthenticators,
})

Implementation

factory UpdateUserSchemaRequest({
  $core.String? id,
  $core.String? type,
  $2.Struct? schema,
  $core.Iterable<$3.AuthenticatorType>? possibleAuthenticators,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (type != null) {
    $result.type = type;
  }
  if (schema != null) {
    $result.schema = schema;
  }
  if (possibleAuthenticators != null) {
    $result.possibleAuthenticators.addAll(possibleAuthenticators);
  }
  return $result;
}