File tree Expand file tree Collapse file tree
packages/devtools_app/lib/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -132,6 +132,8 @@ class ExtensionView extends StatelessWidget {
132132
133133extension ExtensionConfigExtension on DevToolsExtensionConfig {
134134 IconData get icon =>
135+ // The code point is dynamic. Flutter Icon Tree Shaking disabled.
136+ // ignore: non_const_argument_for_const_parameter
135137 IconData (materialIconCodePoint, fontFamily: 'MaterialIcons' );
136138
137139 String get screenId => '${name }_ext' ;
Original file line number Diff line number Diff line change @@ -271,6 +271,8 @@ class FlutterMaterialIcons {
271271
272272 static Icon getIconForCodePoint (int charCode, ColorScheme colorScheme) {
273273 return Icon (
274+ // The code point is dynamic. Flutter Icon Tree Shaking disabled.
275+ // ignore: non_const_argument_for_const_parameter
274276 IconData (charCode, fontFamily: 'MaterialIcons' ),
275277 color: colorScheme.onSurface,
276278 );
You can’t perform that action at this time.
0 commit comments