InputChatPhotoAnimation constructor

const InputChatPhotoAnimation({
  1. required InputFile animation,
  2. required double mainFrameTimestamp,
})

An animation in MPEG4 format; must be square, at most 10 seconds long, have width between 160 and 1280 and be at most 2MB in size

Implementation

const InputChatPhotoAnimation({
  required this.animation,
  required this.mainFrameTimestamp,
});