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 c4a2034 commit 19ab0e3Copy full SHA for 19ab0e3
permission_handler_html/example/analysis_options.yaml
permission_handler_html/lib/permission_handler_html.dart
@@ -10,9 +10,9 @@ import 'web_delegate.dart';
10
11
/// Platform implementation of the permission_handler Flutter plugin.
12
class WebPermissionHandler extends PermissionHandlerPlatform {
13
- static final web.MediaDevices? _devices = web.window.navigator.mediaDevices;
+ static final web.MediaDevices _devices = web.window.navigator.mediaDevices;
14
static final web.Geolocation _geolocation = web.window.navigator.geolocation;
15
- static final web.Permissions? _htmlPermissions =
+ static final web.Permissions _htmlPermissions =
16
web.window.navigator.permissions;
17
18
final WebDelegate _webDelegate;
0 commit comments