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