ButtonModel constructor
ButtonModel(})
Implementation
ButtonModel(super.parent, super.id,
{
dynamic type,
dynamic label,
dynamic color,
dynamic onclick,
dynamic enabled,
List<Model>? children}) {
this.type = type;
this.label = label;
this.color = color;
this.onclick = onclick;
this.enabled = enabled;
this.children = children;
}