DocumentAttributeVideo constructor

const DocumentAttributeVideo({
  1. required bool roundMessage,
  2. required bool supportsStreaming,
  3. required bool nosound,
  4. required double duration,
  5. required int w,
  6. required int h,
  7. int? preloadPrefixSize,
  8. double? videoStartTs,
  9. String? videoCodec,
})

Document Attribute Video constructor.

Implementation

const DocumentAttributeVideo({
  required this.roundMessage,
  required this.supportsStreaming,
  required this.nosound,
  required this.duration,
  required this.w,
  required this.h,
  this.preloadPrefixSize,
  this.videoStartTs,
  this.videoCodec,
}) : super._();