hasIsThreeLineWhere method

WidgetMatcher<ListTile> hasIsThreeLineWhere(
  1. MatchProp<bool> match
)

Expects that isThreeLine of ListTile matches the condition in match.

Example usage:

spot<ListTile>().existsOnce().hasIsThreeLineWhere((it) => it.isTrue());

Implementation

WidgetMatcher<ListTile> hasIsThreeLineWhere(MatchProp<bool> match) {
  return hasDiagnosticProp<bool>('isThreeLine', match);
}