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