fromXml static method
Implementation
static TableRowCellModel? fromXml(WidgetModel parent, XmlElement xml) {
TableRowCellModel? model;
try
{
model = TableRowCellModel(parent, null);
model.deserialize(xml);
}
catch(e)
{
Log().exception(e, caller: 'column.Model');
model = null;
}
return model;
}