whereMatchTextDirection method

  1. @useResult
WidgetSelector<Image> whereMatchTextDirection(
  1. MatchProp<bool> match
)

Creates a WidgetSelector that finds all Image where matchTextDirection matches the condition.

Example usage:

spot<Image>().whereMatchTextDirection((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<Image> whereMatchTextDirection(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('matchTextDirection', match);
}