showLoading method

  1. @override
OverlayEntryControl showLoading({
  1. Widget builder(
    1. BuildContext context
    )?,
})
override

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,
    );