copyWith method
Implementation
GetGiftsForCrafting copyWith({
int? regularGiftId,
String? offset,
int? limit,
}) => GetGiftsForCrafting(
regularGiftId: regularGiftId ?? this.regularGiftId,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);