From 1879c6907d821580b3ccb018a5507ca5f0624e2d Mon Sep 17 00:00:00 2001 From: nilsreichardt Date: Tue, 5 Sep 2023 20:10:13 +0200 Subject: [PATCH] [flutter_markdown] Remove `ignore: avoid_init_to_null` since the package uses Dart 3 --- packages/flutter_markdown/lib/src/widget.dart | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/flutter_markdown/lib/src/widget.dart b/packages/flutter_markdown/lib/src/widget.dart index 65dc983d10ed..3feee6b70f57 100644 --- a/packages/flutter_markdown/lib/src/widget.dart +++ b/packages/flutter_markdown/lib/src/widget.dart @@ -413,9 +413,6 @@ class MarkdownBody extends MarkdownWidget { required super.data, super.selectable, super.styleSheet, - // TODO(stuartmorgan): Remove this once 3.0 is no longer part of the - // legacy analysis matrix; it's a false positive there. - // ignore: avoid_init_to_null super.styleSheetTheme = null, super.syntaxHighlighter, super.onTapLink, @@ -470,9 +467,6 @@ class Markdown extends MarkdownWidget { required super.data, super.selectable, super.styleSheet, - // TODO(stuartmorgan): Remove this once 3.0 is no longer part of the - // legacy analysis matrix; it's a false positive there. - // ignore: avoid_init_to_null super.styleSheetTheme = null, super.syntaxHighlighter, super.onTapLink,