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