toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dash = this.dash;
  final fileName = this.fileName;
  final muxStreams = this.muxStreams;
  final type = this.type;
  return {
    'dash': ?dash,
    'fileName': ?fileName,
    'muxStreams': ?muxStreams,
    'type': ?type,
  };
}