hasMinVerticalPaddingWhere method

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

Expects that minVerticalPadding of ListTile matches the condition in match.

Example usage:

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

Implementation

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