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