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