StreamSelection.fromJson constructor
Implementation
factory StreamSelection.fromJson(Map<String, dynamic> json) {
return StreamSelection(
maxVideoBitsPerSecond: json['maxVideoBitsPerSecond'] as int?,
minVideoBitsPerSecond: json['minVideoBitsPerSecond'] as int?,
streamOrder: (json['streamOrder'] as String?)?.toStreamOrder(),
);
}