SrcInfo
Information about the video bitrate of the media resource being played.
class SrcInfo {
const SrcInfo({this.bitrateInKbps, this.name});
@JsonKey(name: 'bitrateInKbps')
final int? bitrateInKbps;
@JsonKey(name: 'name')
final String? name;
factory SrcInfo.fromJson(Map<String, dynamic> json) =>
_$SrcInfoFromJson(json);
Map<String, dynamic> toJson() => _$SrcInfoToJson(this);
}
Attributes
- bitrateInKbps
- The video bitrate (Kbps) of the media resource being played.
- name
- The name of the media resource.