all<States> static method
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)),
);