copyWith method

SellGift copyWith({
  1. String? businessConnectionId,
  2. String? receivedGiftId,
})

Implementation

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