Skip to content

Commit 5c5b3c5

Browse files
authored
Ignore both unused_element and unused_element_parameter (flutter#152689)
Work towards https://dart-review.googlesource.com/c/sdk/+/378500
1 parent c1872f9 commit 5c5b3c5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/flutter/lib/src/widgets/widget_inspector.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3455,7 +3455,9 @@ class _Location {
34553455
required this.file,
34563456
required this.line,
34573457
required this.column,
3458-
// ignore: unused_element
3458+
// TODO(srawlins): `unused_element_parameter` is being separated from
3459+
// `unused_element`. Ignore both names until the separation is complete.
3460+
// ignore: unused_element, unused_element_parameter
34593461
this.name,
34603462
});
34613463

0 commit comments

Comments
 (0)