We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 853f0ac commit a5399baCopy full SHA for a5399ba
lib/src/rtc_ice_candidate.dart
@@ -1,13 +1,13 @@
1
class RTCIceCandidate {
2
- RTCIceCandidate(this.candidate, this.sdpMid, this.sdpMlineIndex);
+ RTCIceCandidate(this.candidate, this.sdpMid, this.sdpMLineIndex);
3
final String? candidate;
4
final String? sdpMid;
5
- final int? sdpMlineIndex;
+ final int? sdpMLineIndex;
6
dynamic toMap() {
7
return {
8
'candidate': candidate,
9
'sdpMid': sdpMid,
10
- 'sdpMLineIndex': sdpMlineIndex
+ 'sdpMLineIndex': sdpMLineIndex
11
};
12
}
13
0 commit comments