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