whereSoftWrap method

  1. @useResult
WidgetSelector<AnyText> whereSoftWrap(
  1. MatchProp<bool> match
)

Creates a WidgetSelector that finds all AnyText where softWrap matches the condition.

Example usage:

spot<AnyText>().whereSoftWrap((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<AnyText> whereSoftWrap(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('softWrap', match);
}