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