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