fromXml static method
Implementation
static ColumnModel? fromXml(WidgetModel parent, XmlElement xml)
{
ColumnModel? model;
try
{
// build model
model = ColumnModel(parent, Xml.get(node: xml, tag: 'id'));
model.deserialize(xml);
}
catch(e)
{
Log().exception(e, caller: 'column.Model');
model = null;
}
return model;
}