PartialVideo constructor

const PartialVideo({
  1. double? height,
  2. Map<String, dynamic>? metadata,
  3. required String name,
  4. Message? repliedMessage,
  5. required num size,
  6. required String uri,
  7. double? width,
})

Creates a partial video message with all variables video can have. Use VideoMessage to create a full message. You can use VideoMessage.fromPartial constructor to create a full message from a partial one.

Implementation

const PartialVideo({
  this.height,
  this.metadata,
  required this.name,
  this.repliedMessage,
  required this.size,
  required this.uri,
  this.width,
});