hasVerticalDirectionWhere method

WidgetMatcher<Row> hasVerticalDirectionWhere(
  1. MatchProp<VerticalDirection> match
)

Expects that verticalDirection of Row matches the condition in match.

Example usage:

spot<Row>().existsOnce().hasVerticalDirectionWhere((it) => it.equals(VerticalDirection.values.first));

Implementation

WidgetMatcher<Row> hasVerticalDirectionWhere(
    MatchProp<VerticalDirection> match) {
  return hasDiagnosticProp<VerticalDirection>('verticalDirection', match);
}