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))
{
this.width = width;
this.height = height;
this.color = color;
}