Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 3a305d5

Browse files
committed
fix analyzer issue
1 parent ffdfb12 commit 3a305d5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

lib/ui/platform_dispatcher.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2414,7 +2414,7 @@ class SemanticsActionEvent {
24142414
/// Optional arguments for the action.
24152415
final Object? arguments;
24162416

2417-
static const _noArgumentPlaceholder = Object();
2417+
static const Object _noArgumentPlaceholder = Object();
24182418

24192419
/// Create a clone of the [SemanticsActionEvent] but with provided parameters
24202420
/// replaced.

lib/web_ui/lib/platform_dispatcher.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ class SemanticsActionEvent {
513513
final int nodeId;
514514
final Object? arguments;
515515

516-
static const _noArgumentPlaceholder = Object();
516+
static const Object _noArgumentPlaceholder = Object();
517517

518518
SemanticsActionEvent copyWith({
519519
SemanticsAction? type,

lib/web_ui/lib/src/engine/platform_dispatcher.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ class EnginePlatformDispatcher extends ui.PlatformDispatcher {
169169

170170
/// Returns the [FlutterView] with the provided ID if one exists, or null
171171
/// otherwise.
172+
@override
172173
ui.FlutterView? view({required int id}) => viewData[id];
173174

174175
/// A map of opaque platform window identifiers to window configurations.

0 commit comments

Comments
 (0)