whereRunAlignment method

  1. @useResult
WidgetSelector<Wrap> whereRunAlignment(
  1. MatchProp<WrapAlignment> match
)

Creates a WidgetSelector that finds all Wrap where runAlignment matches the condition.

Example usage:

spot<Wrap>().whereRunAlignment((it) => it.equals(WrapAlignment.values.first)).existsOnce();

Implementation

@useResult
WidgetSelector<Wrap> whereRunAlignment(MatchProp<WrapAlignment> match) {
  return withDiagnosticProp<WrapAlignment>('runAlignment', match);
}