whereTextBaseline method

  1. @useResult
WidgetSelector<Column> whereTextBaseline(
  1. MatchProp<TextBaseline> match
)

Creates a WidgetSelector that finds all Column where textBaseline matches the condition.

Example usage:

spot<Column>().whereTextBaseline((it) => it.equals(TextBaseline.values.first)).existsOnce();

Implementation

@useResult
WidgetSelector<Column> whereTextBaseline(MatchProp<TextBaseline> match) {
  return withDiagnosticProp<TextBaseline>('textBaseline', match);
}