|
|
@ -23,7 +23,6 @@ Future<NeonPlatform> getNeonPlatform() async { |
|
|
|
abstract class NeonPlatform { |
|
|
|
abstract class NeonPlatform { |
|
|
|
NeonPlatform({ |
|
|
|
NeonPlatform({ |
|
|
|
required this.canUseWebView, |
|
|
|
required this.canUseWebView, |
|
|
|
required this.canUseWakelock, |
|
|
|
|
|
|
|
required this.canUseQuickActions, |
|
|
|
required this.canUseQuickActions, |
|
|
|
required this.canUseSystemTray, |
|
|
|
required this.canUseSystemTray, |
|
|
|
required this.canUseWindowManager, |
|
|
|
required this.canUseWindowManager, |
|
|
@ -36,8 +35,6 @@ abstract class NeonPlatform { |
|
|
|
|
|
|
|
|
|
|
|
final bool canUseWebView; |
|
|
|
final bool canUseWebView; |
|
|
|
|
|
|
|
|
|
|
|
final bool canUseWakelock; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final bool canUseQuickActions; |
|
|
|
final bool canUseQuickActions; |
|
|
|
|
|
|
|
|
|
|
|
final bool canUseSystemTray; |
|
|
|
final bool canUseSystemTray; |
|
|
|