copyWith method
UpdateTrendingStickerSets
copyWith({
- StickerSets? stickerSets,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateTrendingStickerSets copyWith({
StickerSets? stickerSets,
dynamic extra,
int? clientId,
}) => UpdateTrendingStickerSets(
stickerSets: stickerSets ?? this.stickerSets,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);