copyWith method
AuthorizationStateWaitPassword
copyWith({
- String? passwordHint,
- bool? hasRecoveryEmailAddress,
- bool? hasPassportData,
- String? recoveryEmailAddressPattern,
- dynamic extra,
- int? clientId,
override
Implementation
@override
AuthorizationStateWaitPassword copyWith({
String? passwordHint,
bool? hasRecoveryEmailAddress,
bool? hasPassportData,
String? recoveryEmailAddressPattern,
dynamic extra,
int? clientId,
}) =>
AuthorizationStateWaitPassword(
passwordHint: passwordHint ?? this.passwordHint,
hasRecoveryEmailAddress:
hasRecoveryEmailAddress ?? this.hasRecoveryEmailAddress,
hasPassportData: hasPassportData ?? this.hasPassportData,
recoveryEmailAddressPattern:
recoveryEmailAddressPattern ?? this.recoveryEmailAddressPattern,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);