asHTMLDivElement static method

HTMLDivElement asHTMLDivElement(
  1. UILoadingType? type, {
  2. bool inline = true,
  3. String? color,
  4. double? zoom,
  5. String? text,
  6. double? textZoom,
  7. dynamic cssContext,
  8. bool? withProgress,
  9. UILoadingConfig? config,
})

Implementation

static HTMLDivElement asHTMLDivElement(UILoadingType? type,
    {bool inline = true,
    String? color,
    double? zoom,
    String? text,
    double? textZoom,
    dynamic cssContext,
    bool? withProgress,
    UILoadingConfig? config}) {
  var div = asDIVElement(type,
      inline: inline,
      color: color,
      zoom: zoom,
      text: text,
      textZoom: textZoom,
      cssContext: cssContext,
      withProgress: withProgress,
      config: config);
  return div.buildDOM(generator: UIComponent.domGenerator) as HTMLDivElement;
}