getEmptyRowModel method
Implementation
TableRowModel? getEmptyRowModel()
{
// build model
TableRowModel? model = TableRowModel.fromXml(this, prototype, data: null);
if(model?.cells != null){for (var cell in model!.cells) {
cell.visible = false;
}}
return model;
}