Skip to content

Commit

Permalink
Remove unnecessary nullable qualifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbeusekom committed Jul 26, 2024
1 parent c4a2034 commit 19ab0e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 30 deletions.
28 changes: 0 additions & 28 deletions permission_handler_html/example/analysis_options.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions permission_handler_html/lib/permission_handler_html.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import 'web_delegate.dart';

/// Platform implementation of the permission_handler Flutter plugin.
class WebPermissionHandler extends PermissionHandlerPlatform {
static final web.MediaDevices? _devices = web.window.navigator.mediaDevices;
static final web.MediaDevices _devices = web.window.navigator.mediaDevices;
static final web.Geolocation _geolocation = web.window.navigator.geolocation;
static final web.Permissions? _htmlPermissions =
static final web.Permissions _htmlPermissions =
web.window.navigator.permissions;

final WebDelegate _webDelegate;
Expand Down

0 comments on commit 19ab0e3

Please sign in to comment.