SDNVideoFile constructor

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

Implementation

SDNVideoFile(
    {required Uint8List bytes,
    required String name,
    String? mimeType,
    this.width,
    this.height,
    this.duration})
    : super(bytes: bytes, name: name, mimeType: mimeType);