TableRowCellModel constructor
TableRowCellModel(
- WidgetModel parent,
- String? id, {
- dynamic width,
- dynamic height,
- 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;
}