File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,15 @@ class WebRTC {
6
6
static MethodChannel methodChannel () => _channel;
7
7
8
8
static bool get platformIsDesktop =>
9
- Platform .isWindows || Platform .isLinux || Platform .isMacOS;
9
+ Platform .isWindows ||
10
+ Platform .isLinux ||
11
+ Platform .isMacOS ||
12
+ Platform .isLinux;
10
13
11
14
static bool get platformIsWindows => Platform .isWindows;
12
15
16
+ static bool get platformIsLinux => Platform .isLinux;
17
+
13
18
static bool get platformIsMobile => Platform .isIOS || Platform .isAndroid;
14
19
15
20
static bool get platformIsIOS => Platform .isIOS;
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ class WebRTC {
5
5
6
6
static bool get platformIsWindows => false ;
7
7
8
+ static bool get platformIsLinux => false ;
9
+
8
10
static bool get platformIsMobile => false ;
9
11
10
12
static bool get platformIsIOS => false ;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ version: 0.6.0
4
4
homepage : https://github.com/cloudwebrtc/flutter-webrtc
5
5
environment :
6
6
sdk : ' >=2.12.0 <3.0.0'
7
+ flutter : ^1.22.0
7
8
8
9
dependencies :
9
10
flutter :
You can’t perform that action at this time.
0 commit comments