AudioCodec.fromJson constructor
Creates an AudioCodec from JSON
Implementation
factory AudioCodec.fromJson(Map<String, dynamic> json) {
return AudioCodec(
channels: json['channels'] as int?,
clockRate: json['clockRate'] as int?,
mimeType: json['mimeType'] as String?,
sdpFmtpLine: json['sdpFmtpLine'] as String?,
);
}