defaultContentLoadingBuilder static method
The default loading builder that shows a spinner when an asynchronous search is pending.
Implementation
static Widget defaultContentLoadingBuilder(BuildContext _, FSelectSearchStyle style) => Padding(
  padding: const EdgeInsets.all(13),
  child: FProgress.circularIcon(style: (s) => style.loadingIndicatorStyle),
);