hasMinLeadingWidthWhere method

WidgetMatcher<ListTile> hasMinLeadingWidthWhere(
  1. MatchProp<double> match
)

Expects that minLeadingWidth of ListTile matches the condition in match.

Example usage:

spot<ListTile>().existsOnce().hasMinLeadingWidthWhere((it) => it.isGreaterThan(10.5));

Implementation

WidgetMatcher<ListTile> hasMinLeadingWidthWhere(MatchProp<double> match) {
  return hasDiagnosticProp<double>('minLeadingWidth', match);
}