copyWith method
Implementation
@override
UpdateStickerSet copyWith({
StickerSet? stickerSet,
dynamic extra,
int? clientId,
}) => UpdateStickerSet(
stickerSet: stickerSet ?? this.stickerSet,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);