TableRowCellModel constructor

TableRowCellModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic width,
  4. dynamic height,
  5. dynamic altcolor,
})

Implementation

TableRowCellModel(WidgetModel parent, String? id, {dynamic width, dynamic height, dynamic altcolor}) : super(parent, id)
{
  if (width  != null) this.width  = width;
  if (height != null) this.height = height;
  this.altcolor = altcolor;
}