InlineQueryResultVideo constructor

InlineQueryResultVideo({
  1. String? extra,
  2. int? client_id,
  3. string? id,
  4. Video? video,
  5. string? title,
  6. string? description,
})

Implementation

InlineQueryResultVideo({
  super.extra,
  super.client_id,
  this.id,
  this.video,
  this.title,
  this.description,
});