copyWithWrapped method

UserCustomPassword copyWithWrapped({
  1. Wrapped<String?>? version,
  2. Wrapped<String>? seed,
  3. Wrapped<List<OverrideAccounts>>? overrideAccounts,
  4. Wrapped<Mfa>? mfa,
  5. Wrapped<String>? recaptcha,
  6. Wrapped<String>? forceError,
})

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));
}