all static method

EndlessStateProperty all(
  1. StatelessWidgetResolver builder
)

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

Implementation

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