hasEnableFeedback method

WidgetMatcher<ListTile> hasEnableFeedback(
  1. bool? value
)

Expects that enableFeedback of ListTile equals (==) value.

Example usage:

spot<ListTile>().existsOnce().hasEnableFeedback(true);

Implementation

WidgetMatcher<ListTile> hasEnableFeedback(bool? value) {
  return hasDiagnosticProp<bool>('enableFeedback',
      (it) => value == null ? it.isNull() : it.equals(value));
}