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