UserSchema constructor
UserSchema({})
Implementation
factory UserSchema({
$core.String? id,
$1.Details? details,
$core.String? type,
State? state,
$core.int? revision,
$2.Struct? schema,
$core.Iterable<AuthenticatorType>? possibleAuthenticators,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (details != null) {
$result.details = details;
}
if (type != null) {
$result.type = type;
}
if (state != null) {
$result.state = state;
}
if (revision != null) {
$result.revision = revision;
}
if (schema != null) {
$result.schema = schema;
}
if (possibleAuthenticators != null) {
$result.possibleAuthenticators.addAll(possibleAuthenticators);
}
return $result;
}