InputInlineQueryResultAnimation constructor

const InputInlineQueryResultAnimation({
  1. required String id,
  2. required String title,
  3. required String thumbnailUrl,
  4. required String thumbnailMimeType,
  5. required String videoUrl,
  6. required String videoMimeType,
  7. required int videoDuration,
  8. required int videoWidth,
  9. required int videoHeight,
  10. ReplyMarkup? replyMarkup,
  11. required InputMessageContent inputMessageContent,
})

Represents a link to an animated GIF or an animated (i.e., without sound) H.264/MPEG-4 AVC video

Implementation

const InputInlineQueryResultAnimation({
  required this.id,
  required this.title,
  required this.thumbnailUrl,
  required this.thumbnailMimeType,
  required this.videoUrl,
  required this.videoMimeType,
  required this.videoDuration,
  required this.videoWidth,
  required this.videoHeight,
  this.replyMarkup,
  required this.inputMessageContent,
});