UserSchema constructor

UserSchema({
  1. String? type,
  2. Struct? schema,
  3. 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;
}