MatrixVideoFile constructor

MatrixVideoFile({
  1. required Uint8List bytes,
  2. required String name,
  3. String? mimeType,
  4. int? width,
  5. int? height,
  6. int? duration,
})

Implementation

MatrixVideoFile(
    {required super.bytes,
    required super.name,
    super.mimeType,
    this.width,
    this.height,
    this.duration});