copyWith method

SetStickerSetThumbnail copyWith({
  1. int? userId,
  2. String? name,
  3. InputFile? thumbnail,
  4. 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,
);