$uiLoading function

DIVElement $uiLoading({
  1. UILoadingType? type,
  2. dynamic inline,
  3. dynamic color,
  4. dynamic zoom,
  5. dynamic text,
  6. dynamic textZoom,
  7. bool? withProgress,
})

Implementation

DIVElement $uiLoading(
        {UILoadingType? type,
        dynamic inline,
        dynamic color,
        dynamic zoom,
        dynamic text,
        dynamic textZoom,
        bool? withProgress}) =>
    UILoadingConfig(
            type: type,
            inline: inline,
            color: color,
            zoom: zoom,
            text: text,
            textZoom: textZoom,
            withProgress: withProgress)
        .asDIVElement();