copyWith method
Implementation
SendResoldGift copyWith({
String? giftName,
MessageSender? ownerId,
GiftResalePrice? price,
}) => SendResoldGift(
giftName: giftName ?? this.giftName,
ownerId: ownerId ?? this.ownerId,
price: price ?? this.price,
);