copyWith method
Copy method
Implementation
CategorySticker copyWith({String? category, List<Sticker>? stickers}) {
return CategorySticker(
category: category ?? this.category,
stickers: stickers ?? this.stickers,
);
}
Copy method
CategorySticker copyWith({String? category, List<Sticker>? stickers}) {
return CategorySticker(
category: category ?? this.category,
stickers: stickers ?? this.stickers,
);
}