copyWith method

GetGiftsForCrafting copyWith({
  1. int? regularGiftId,
  2. String? offset,
  3. int? limit,
})

Implementation

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