copyWith method
SearchGiftsForResale
copyWith({
- int? giftId,
- GiftForResaleOrder? order,
- bool? forCrafting,
- bool? forStars,
- List<
UpgradedGiftAttributeId> ? attributes, - String? offset,
- int? limit,
Implementation
SearchGiftsForResale copyWith({
int? giftId,
GiftForResaleOrder? order,
bool? forCrafting,
bool? forStars,
List<UpgradedGiftAttributeId>? attributes,
String? offset,
int? limit,
}) => SearchGiftsForResale(
giftId: giftId ?? this.giftId,
order: order ?? this.order,
forCrafting: forCrafting ?? this.forCrafting,
forStars: forStars ?? this.forStars,
attributes: attributes ?? this.attributes,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);