showLoading method
Implementation
@override
OverlayEntryControl showLoading(
{Widget Function(BuildContext context)? builder}) =>
show(
builder ??
(context) => const FourRotatingDots(color: Colors.blue, size: 40),
id: _loadingId,
zindex: _loadingZIndex,
backgroundColor: _loadingBackgroundColor,
type: OverlayLayoutTypeEnum.dialog,
);