copyWith method

  1. @override
AuthorizationStateWaitPassword copyWith({
  1. String? passwordHint,
  2. bool? hasRecoveryEmailAddress,
  3. String? recoveryEmailAddressPattern,
  4. dynamic extra,
  5. 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,
);