copyWithWrapped method
Implementation
UserCustomPassword copyWithWrapped(
{Wrapped<String?>? version,
Wrapped<String>? seed,
Wrapped<List<OverrideAccounts>>? overrideAccounts,
Wrapped<Mfa>? mfa,
Wrapped<String>? recaptcha,
Wrapped<String>? forceError}) {
return UserCustomPassword(
version: (version != null ? version.value : this.version),
seed: (seed != null ? seed.value : this.seed),
overrideAccounts: (overrideAccounts != null
? overrideAccounts.value
: this.overrideAccounts),
mfa: (mfa != null ? mfa.value : this.mfa),
recaptcha: (recaptcha != null ? recaptcha.value : this.recaptcha),
forceError: (forceError != null ? forceError.value : this.forceError));
}