LoadingBuilder typedef
LoadingBuilder =
Widget Function(BuildContext context)
A typedef representing a loading builder function.
A LoadingBuilder is a function that takes a BuildContext as an argument and returns a Widget. It is typically used in conjunction with asynchronous operations or data fetching, allowing you to display a loading indicator or any other UI element during the loading process.
Implementation
typedef LoadingBuilder = Widget Function(BuildContext context);