fromXmlString static method
Implementation
static TableFooterCellModel? fromXmlString(WidgetModel parent, String xml) {
XmlDocument? document = Xml.tryParse(xml);
return (document != null)
? TableFooterCellModel.fromXml(parent, document.rootElement)
: null;
}