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