MessageVideo constructor

MessageVideo({
  1. String? extra,
  2. int? client_id,
  3. Video? video,
  4. FormattedText? caption,
  5. Bool? has_spoiler,
  6. Bool? is_secret,
})

Implementation

MessageVideo({
  super.extra,
  super.client_id,
  this.video,
  this.caption,
  this.has_spoiler,
  this.is_secret,
});