InputAnimation constructor

InputAnimation({
  1. InputFile? animation,
  2. InputThumbnail? thumbnail,
  3. required List<int> addedStickerFileIds,
  4. required int duration,
  5. required int width,
  6. required int height,
})

Implementation

InputAnimation({
  this.animation,
  this.thumbnail,
  required this.addedStickerFileIds,
  required this.duration,
  required this.width,
  required this.height,
});