hasTextDirectionWhere method

WidgetMatcher<Text> hasTextDirectionWhere(
  1. MatchProp<TextDirection> match
)

Expects that textDirection of Text matches the condition in match.

Example usage:

spot<Text>().existsOnce().hasTextDirectionWhere((it) => it.equals(TextDirection.values.first));

Implementation

WidgetMatcher<Text> hasTextDirectionWhere(MatchProp<TextDirection> match) {
  return hasDiagnosticProp<TextDirection>('textDirection', match);
}