deserialize method
Deserializes the FML template elements, attributes and children
Implementation
@override
void deserialize(XmlElement xml)
{
// deserialize
super.deserialize(xml);
// properties
this.minheight = Xml.get(node: xml, tag: 'minheight');
this.maxheight = Xml.get(node: xml, tag: 'maxheight');
}