copyWith method
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,
);