fromXml static method
Implementation
static ScaleTransitionModel? fromXml(WidgetModel parent, XmlElement xml) {
ScaleTransitionModel? model;
try {
model = ScaleTransitionModel(parent, Xml.get(node: xml, tag: 'id'));
model.deserialize(xml);
} catch (e) {
Log().debug(e.toString());
model = null;
}
return model;
}