copyWith method

SetGiftResalePrice copyWith({
  1. String? receivedGiftId,
  2. GiftResalePrice? price,
})

Implementation

SetGiftResalePrice copyWith({
  String? receivedGiftId,
  GiftResalePrice? price,
}) => SetGiftResalePrice(
  receivedGiftId: receivedGiftId ?? this.receivedGiftId,
  price: price ?? this.price,
);