hasTextAlignVerticalWhere method

WidgetMatcher<TextField> hasTextAlignVerticalWhere(
  1. MatchProp<TextAlignVertical> match
)

Expects that textAlignVertical of TextField matches the condition in match.

Example usage:

spot<TextField>().existsOnce().hasTextAlignVerticalWhere((it) => it.equals(TextAlignVertical.center));

Implementation

WidgetMatcher<TextField> hasTextAlignVerticalWhere(
    MatchProp<TextAlignVertical> match) {
  return hasDiagnosticProp<TextAlignVertical>('textAlignVertical', match);
}