Unverified Commit 10aad08a authored by Abhishek Ghaskata's avatar Abhishek Ghaskata Committed by GitHub

add ? (#88019)

parent 79ff8a5c
...@@ -138,9 +138,9 @@ class Checkbox extends StatefulWidget { ...@@ -138,9 +138,9 @@ class Checkbox extends StatefulWidget {
/// ```dart /// ```dart
/// Checkbox( /// Checkbox(
/// value: _throwShotAway, /// value: _throwShotAway,
/// onChanged: (bool newValue) { /// onChanged: (bool? newValue) {
/// setState(() { /// setState(() {
/// _throwShotAway = newValue; /// _throwShotAway = newValue!;
/// }); /// });
/// }, /// },
/// ) /// )
......
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