UIDialogLoading constructor

UIDialogLoading(
  1. String text,
  2. UILoadingType loadingType, {
  3. bool hideUIRoot = false,
  4. bool showCloseButton = false,
  5. bool show = false,
  6. dynamic classes,
  7. dynamic style,
  8. String padding = '6px',
  9. bool fullScreen = false,
  10. int backgroundGrey = 0,
  11. double backgroundAlpha = 0.80,
  12. int? backgroundBlur,
})

Implementation

UIDialogLoading(String text, UILoadingType loadingType,
    {bool hideUIRoot = false,
    bool showCloseButton = false,
    bool show = false,
    dynamic classes,
    dynamic style,
    String padding = '6px',
    bool fullScreen = false,
    int backgroundGrey = 0,
    double backgroundAlpha = 0.80,
    int? backgroundBlur})
    : super(_buildContent(loadingType, text),
          hideUIRoot: hideUIRoot,
          showCloseButton: showCloseButton,
          show: show,
          classes: classes,
          style: style,
          padding: padding,
          fullScreen: fullScreen,
          backgroundGrey: backgroundGrey,
          backgroundAlpha: backgroundAlpha,
          backgroundBlur: backgroundBlur);