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