Sticker constructor

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

Basic constructor

Implementation

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