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