hasVerticalDirectionWhere method

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

Expects that verticalDirection of Column matches the condition in match.

Example usage:

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

Implementation

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