isMultiLine static method

bool isMultiLine([
  1. Finder? superTextFieldFinder
])

Returns true if the given SuperTextField is a multi-line text field.

By default, this method expects a single SuperTextField in the widget tree and finds it byType. To specify one SuperTextField among many, pass a superTextFieldFinder.

Implementation

static bool isMultiLine([Finder? superTextFieldFinder]) {
  return !isSingleLine(superTextFieldFinder);
}