fromXml static method

TableRowCellModel? fromXml(
  1. WidgetModel parent,
  2. XmlElement xml
)
override

Implementation

static TableRowCellModel? fromXml(WidgetModel parent, XmlElement xml) {
  TableRowCellModel? model;
  try
  {
    model = TableRowCellModel(parent, null);
    model.deserialize(xml);
  }
  catch(e)
  {
    Log().exception(e,  caller: 'column.Model');
    model = null;
  }
  return model;
}