MessageVideoNote constructor

MessageVideoNote({
  1. String? extra,
  2. int? client_id,
  3. VideoNote? video_note,
  4. Bool? is_viewed,
  5. Bool? is_secret,
})

Implementation

MessageVideoNote({
  super.extra,
  super.client_id,
  this.video_note,
  this.is_viewed,
  this.is_secret,
});