copyWith method
Implementation
SetStickerSetThumbnail copyWith({
int? userId,
String? name,
InputFile? thumbnail,
}) => SetStickerSetThumbnail(
userId: userId ?? this.userId,
name: name ?? this.name,
thumbnail: thumbnail ?? this.thumbnail,
);