asHTMLDivElement static method
HTMLDivElement
asHTMLDivElement(
- UILoadingType? type, {
- bool inline = true,
- String? color,
- double? zoom,
- String? text,
- double? textZoom,
- dynamic cssContext,
- bool? withProgress,
- 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;
}