hasHorizontalTitleGapWhere method

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

Expects that horizontalTitleGap of ListTile matches the condition in match.

Example usage:

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

Implementation

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