whereReverse method

  1. @useResult
WidgetSelector<GridView> whereReverse(
  1. MatchProp<bool> match
)

Creates a WidgetSelector that finds all GridView where reverse matches the condition.

Example usage:

spot<GridView>().whereReverse((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<GridView> whereReverse(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('reverse', match);
}