hasIsExtendedWhere method

WidgetMatcher<FloatingActionButton> hasIsExtendedWhere(
  1. MatchProp<bool> match
)

Expects that isExtended of FloatingActionButton matches the condition in match.

Example usage:

spot<FloatingActionButton>().existsOnce().hasIsExtendedWhere((it) => it.isTrue());

Implementation

WidgetMatcher<FloatingActionButton> hasIsExtendedWhere(
    MatchProp<bool> match) {
  return hasDiagnosticProp<bool>('isExtended', match);
}