hasScribbleEnabled method

WidgetMatcher<TextField> hasScribbleEnabled(
  1. bool? value
)

Expects that scribbleEnabled of TextField equals (==) value.

Example usage:

spot<TextField>().existsOnce().hasScribbleEnabled(true);

Implementation

WidgetMatcher<TextField> hasScribbleEnabled(bool? value) {
  return hasDiagnosticProp<bool>('scribbleEnabled',
      (it) => value == null ? it.isNull() : it.equals(value));
}