SetPassword constructor
Implementation
factory SetPassword({
$core.String? password,
$core.String? hash,
$core.bool? changeRequired,
}) {
final $result = create();
if (password != null) {
$result.password = password;
}
if (hash != null) {
$result.hash = hash;
}
if (changeRequired != null) {
$result.changeRequired = changeRequired;
}
return $result;
}