Unverified Commit 508be6f8 authored by Konstantin Scheglov's avatar Konstantin Scheglov Committed by GitHub

Ignore one avoid_redundant_argument_values, requires linter fix. (#109049)

parent de8a2fa6
...@@ -68,6 +68,8 @@ class _SelectionControlsPageState extends State<SelectionControlsPage> { ...@@ -68,6 +68,8 @@ class _SelectionControlsPageState extends State<SelectionControlsPage> {
const Checkbox( const Checkbox(
key: checkbox2Key, key: checkbox2Key,
value: false, value: false,
// TODO(scheglov): Requires linter fix, https://github.com/dart-lang/sdk/issues/49596.
// ignore: avoid_redundant_argument_values
onChanged: null, onChanged: null,
), ),
], ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment