Unverified Commit 050b0302 authored by Hans Muller's avatar Hans Muller Committed by GitHub

Fixed a typo in the DataRow API doc (#63094)

parent 033d1380
...@@ -166,12 +166,12 @@ class DataRow { ...@@ -166,12 +166,12 @@ class DataRow {
/// ///
/// ```dart /// ```dart
/// DataRow( /// DataRow(
/// color: MaterialStateProperty.resolveWith<Color>(Set<MaterialState> states) { /// color: MaterialStateProperty.resolveWith<Color>((Set<MaterialState> states) {
/// if (states.contains(MaterialState.selected)) /// if (states.contains(MaterialState.selected))
/// return Theme.of(context).colorScheme.primary.withOpacity(0.08); /// return Theme.of(context).colorScheme.primary.withOpacity(0.08);
/// return null; // Use the default value. /// return null; // Use the default value.
/// }, /// }),
///) /// )
/// ``` /// ```
/// ///
/// See also: /// See also:
......
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