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