whereTextDirection method

Creates a WidgetSelector that finds all SelectableText where textDirection matches the condition.

Example usage:

spot<SelectableText>().whereTextDirection((it) => it.equals(TextDirection.values.first)).existsOnce();

Implementation

@useResult
WidgetSelector<SelectableText> whereTextDirection(
    MatchProp<TextDirection> match) {
  return withDiagnosticProp<TextDirection>('textDirection', match);
}