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