VideoNote constructor

VideoNote({
  1. required String fileId,
  2. required String fileUniqueId,
  3. required int length,
  4. required int duration,
  5. PhotoSize? thumbnail,
  6. int? fileSize,
})

Implementation

VideoNote({
  required this.fileId,
  required this.fileUniqueId,
  required this.length,
  required this.duration,
  this.thumbnail,
  this.fileSize,
});