hasReverse method

WidgetMatcher<GridView> hasReverse(
  1. bool? value
)

Expects that reverse of GridView equals (==) value.

Example usage:

spot<GridView>().existsOnce().hasReverse(true);

Implementation

WidgetMatcher<GridView> hasReverse(bool? value) {
  return hasDiagnosticProp<bool>(
      'reverse', (it) => value == null ? it.isNull() : it.equals(value));
}