copyWith method

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

Implementation

UserCustomPassword copyWith(
    {String? version,
    String? seed,
    List<OverrideAccounts>? overrideAccounts,
    Mfa? mfa,
    String? recaptcha,
    String? forceError}) {
  return UserCustomPassword(
      version: version ?? this.version,
      seed: seed ?? this.seed,
      overrideAccounts: overrideAccounts ?? this.overrideAccounts,
      mfa: mfa ?? this.mfa,
      recaptcha: recaptcha ?? this.recaptcha,
      forceError: forceError ?? this.forceError);
}