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