TableHeaderModel constructor

TableHeaderModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic width,
  4. dynamic height,
  5. 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;
}