fromXml static method
Implementation
static Format? fromXml(WidgetModel parent, XmlElement xml)
{
Format model = Format
(
parent,
id : Xml.get(node: xml, tag: 'id'),
filter : Xml.get(node: xml, tag: 'filter'),
);
model.deserialize(xml);
return model;
}