RecorderStreamInfo
需录制的音视频流的相关信息。
Dart
(explicitToJson: true, includeIfNull: false)
class RecorderStreamInfo {
const RecorderStreamInfo({this.channelId, this.uid});
(name: 'channelId')
final String? channelId;
(name: 'uid')
final int? uid;
factory RecorderStreamInfo.fromJson(Map<String, dynamic> json) =>
_$RecorderStreamInfoFromJson(json);
Map<String, dynamic> toJson() => _$RecorderStreamInfoToJson(this);
}
channelId
需录制的频道名称。
uid
需录制的用户 ID。