File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
default_editor/layout_single_column Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -944,7 +944,10 @@ class _Component extends StatelessWidget {
944
944
required this.componentBuilders,
945
945
required this.componentViewModel,
946
946
required this.componentKey,
947
- // ignore: unused_element
947
+ // TODO(srawlins): `unused_element`, when reporting a parameter, is being
948
+ // renamed to `unused_element_parameter`. For now, ignore each; when the SDK
949
+ // constraint is >= 3.6.0, just ignore `unused_element_parameter`.
950
+ // ignore: unused_element, unused_element_parameter
948
951
this.showDebugPaint = false,
949
952
}) : super(key: key);
950
953
Original file line number Diff line number Diff line change @@ -609,7 +609,10 @@ const defaultSuperReaderDocumentOverlayBuilders = [
609
609
class _SelectionLeadersDocumentLayerBuilder implements SuperReaderDocumentLayerBuilder {
610
610
const _SelectionLeadersDocumentLayerBuilder({
611
611
required this.links,
612
- // ignore: unused_element
612
+ // TODO(srawlins): `unused_element`, when reporting a parameter, is being
613
+ // renamed to `unused_element_parameter`. For now, ignore each; when the SDK
614
+ // constraint is >= 3.6.0, just ignore `unused_element_parameter`.
615
+ // ignore: unused_element, unused_element_parameter
613
616
this.showDebugLeaderBounds = false,
614
617
});
615
618
You can’t perform that action at this time.
0 commit comments