Skip to content

Commit a5399ba

Browse files
committed
fix: Fix case for RTCIceCandidate.sdpMLineIndex, close #1.
1 parent 853f0ac commit a5399ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/src/rtc_ice_candidate.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
class RTCIceCandidate {
2-
RTCIceCandidate(this.candidate, this.sdpMid, this.sdpMlineIndex);
2+
RTCIceCandidate(this.candidate, this.sdpMid, this.sdpMLineIndex);
33
final String? candidate;
44
final String? sdpMid;
5-
final int? sdpMlineIndex;
5+
final int? sdpMLineIndex;
66
dynamic toMap() {
77
return {
88
'candidate': candidate,
99
'sdpMid': sdpMid,
10-
'sdpMLineIndex': sdpMlineIndex
10+
'sdpMLineIndex': sdpMLineIndex
1111
};
1212
}
1313
}

0 commit comments

Comments
 (0)