HTMLWidgetBase constructor
const
HTMLWidgetBase({})
Implementation
const HTMLWidgetBase({
Key? key,
this.ref,
this.id,
this.title,
this.style,
this.className,
this.hidden,
this.innerText,
this.child,
this.children,
this.onClick,
this.additionalAttributes,
}) : assert(
(null == child && null == children) ||
(null == innerText && null == child) ||
(null == innerText && null == children),
'A widget can have innerText or child or children list.',
),
super(key: key);