copyWith method

AuthorizationStateWaitPassword copyWith({
  1. String? passwordHint,
  2. bool? hasRecoveryEmailAddress,
  3. bool? hasPassportData,
  4. String? recoveryEmailAddressPattern,
})

Implementation

AuthorizationStateWaitPassword copyWith({
  String? passwordHint,
  bool? hasRecoveryEmailAddress,
  bool? hasPassportData,
  String? recoveryEmailAddressPattern,
}) => AuthorizationStateWaitPassword(
  passwordHint: passwordHint ?? this.passwordHint,
  hasRecoveryEmailAddress:
      hasRecoveryEmailAddress ?? this.hasRecoveryEmailAddress,
  hasPassportData: hasPassportData ?? this.hasPassportData,
  recoveryEmailAddressPattern:
      recoveryEmailAddressPattern ?? this.recoveryEmailAddressPattern,
);