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