hasMinLeadingWidth method

WidgetMatcher<ListTile> hasMinLeadingWidth(
  1. double? value
)

Expects that minLeadingWidth of ListTile equals (==) value.

Example usage:

spot<ListTile>().existsOnce().hasMinLeadingWidth(10.5);

Implementation

WidgetMatcher<ListTile> hasMinLeadingWidth(double? value) {
  return hasDiagnosticProp<double>('minLeadingWidth',
      (it) => value == null ? it.isNull() : it.equals(value));
}