toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final fileType = this.fileType;
final id = this.id;
final kind = this.kind;
final resolution = this.resolution;
final targetBitRate = this.targetBitRate;
return {
'fileType': ?fileType,
'id': ?id,
'kind': ?kind,
'resolution': ?resolution,
'targetBitRate': ?targetBitRate,
};
}