fromXmlString static method

TableFooterCellModel? fromXmlString(
  1. WidgetModel parent,
  2. String xml
)

Implementation

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