RtcConnection
Contains connection information.
class RtcConnection {
const RtcConnection({this.channelId, this.localUid});
@JsonKey(name: 'channelId')
final String? channelId;
@JsonKey(name: 'localUid')
final int? localUid;
factory RtcConnection.fromJson(Map<String, dynamic> json) =>
_$RtcConnectionFromJson(json);
Map<String, dynamic> toJson() => _$RtcConnectionToJson(this);
}
Attributes
- channelId
- The channel name.
- localUid
- The ID of the local user.