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