copyWith method
Implementation
SellGift copyWith({String? businessConnectionId, String? receivedGiftId}) =>
SellGift(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
receivedGiftId: receivedGiftId ?? this.receivedGiftId,
);