TableHeaderModel constructor
TableHeaderModel(
- WidgetModel parent,
- String? id, {
- dynamic width,
- dynamic height,
- dynamic color,
Implementation
TableHeaderModel(WidgetModel parent, String? id, {dynamic width, dynamic height, dynamic color}) : super(parent, id, scope: Scope(parent: parent.scope))
{
if (width != null) this.width = width;
if (height != null) this.height = height;
this.color = color;
}