all<States> static method

WidgetStateProperty<States> all<States>(
  1. StatelessWidgetResolver builder
)

Resolves the given builder in all cases regardless of the state of the scroll view.

Implementation

static WidgetStateProperty<States> all<States>(
        StatelessWidgetResolver builder) =>
    WidgetStateProperty(
      (BuildContext context) =>
          StateProperty.all<States, Widget?>(() => builder(context)),
    );