copyWith method

SetPinnedGifts copyWith({
  1. MessageSender? ownerId,
  2. List<String>? receivedGiftIds,
})

Implementation

SetPinnedGifts copyWith({
  MessageSender? ownerId,
  List<String>? receivedGiftIds,
}) => SetPinnedGifts(
  ownerId: ownerId ?? this.ownerId,
  receivedGiftIds: receivedGiftIds ?? this.receivedGiftIds,
);