copyWith method
Implementation
TrendingStickerSets copyWith({
int? totalCount,
List<StickerSetInfo>? sets,
bool? isPremium,
}) => TrendingStickerSets(
totalCount: totalCount ?? this.totalCount,
sets: sets ?? this.sets,
isPremium: isPremium ?? this.isPremium,
);