Sticker constructor

Sticker({
  1. required String fileId,
  2. required String fileUniqueId,
  3. required int width,
  4. required int height,
  5. required bool isAnimated,
  6. PhotoSize? thumb,
  7. String? emoji,
  8. String? setName,
  9. MaskPosition? maskPosition,
  10. int? fileSize,
})

Implementation

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