resolveWith static method

PaginatedSearchBarBuilderStateProperty resolveWith(
  1. StatefulWidgetResolver builder
)

The most flexible state property that allows for dynamically resolving the builder function based on the state of the scroll view.

Implementation

static PaginatedSearchBarBuilderStateProperty resolveWith(
        StatefulWidgetResolver builder) =>
    PaginatedSearchBarBuilderStateProperty(
      (BuildContext context) =>
          StateProperty.resolveWith<PaginatedSearchBarState, Widget>(
              (states) => builder(context, states)),
    );