VideoNote constructor

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

Basic constructor

Implementation

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