copyWith method

  1. @override
ResetPasswordResultDeclined copyWith({
  1. int? retryDate,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
ResetPasswordResultDeclined copyWith({
  int? retryDate,
  dynamic extra,
  int? clientId,
}) => ResetPasswordResultDeclined(
  retryDate: retryDate ?? this.retryDate,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);