copyWith method
Implementation
GiftCollection copyWith({
int? id,
String? name,
Sticker? icon,
int? giftCount,
}) => GiftCollection(
id: id ?? this.id,
name: name ?? this.name,
icon: icon ?? this.icon,
giftCount: giftCount ?? this.giftCount,
);