Sticker constructor

Sticker({
  1. required String fileId,
  2. required String fileUniqueId,
  3. required int width,
  4. required int height,
  5. required bool isAnimated,
  6. required bool isVideo,
  7. PhotoSize? thumbnail,
  8. String? emoji,
  9. String? setName,
  10. File? premiumAnimation,
  11. MaskPosition? maskPosition,
  12. String? customEmojiId,
  13. bool? needsRepainting,
  14. int? fileSize,
})

Implementation

Sticker({
  required this.fileId,
  required this.fileUniqueId,
  required this.width,
  required this.height,
  required this.isAnimated,
  required this.isVideo,
  this.thumbnail,
  this.emoji,
  this.setName,
  this.premiumAnimation,
  this.maskPosition,
  this.customEmojiId,
  this.needsRepainting,
  this.fileSize,
});