|
|
@ -7,6 +7,7 @@ abstract class HarbourPlatform { |
|
|
|
required this.canUseQuickActions, |
|
|
|
required this.canUseQuickActions, |
|
|
|
required this.canUseSystemTray, |
|
|
|
required this.canUseSystemTray, |
|
|
|
required this.canUseWindowManager, |
|
|
|
required this.canUseWindowManager, |
|
|
|
|
|
|
|
required this.canUseCamera, |
|
|
|
required this.getApplicationCachePath, |
|
|
|
required this.getApplicationCachePath, |
|
|
|
required this.getUserAccessibleAppDataPath, |
|
|
|
required this.getUserAccessibleAppDataPath, |
|
|
|
this.init, |
|
|
|
this.init, |
|
|
@ -22,6 +23,8 @@ abstract class HarbourPlatform { |
|
|
|
|
|
|
|
|
|
|
|
final bool canUseWindowManager; |
|
|
|
final bool canUseWindowManager; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final bool canUseCamera; |
|
|
|
|
|
|
|
|
|
|
|
final Future<String> Function() getApplicationCachePath; |
|
|
|
final Future<String> Function() getApplicationCachePath; |
|
|
|
|
|
|
|
|
|
|
|
final Future<String> Function() getUserAccessibleAppDataPath; |
|
|
|
final Future<String> Function() getUserAccessibleAppDataPath; |
|
|
|