IntVariable.fromXMLNode constructor
Implementation
@override
IntVariable.fromXMLNode(XMLNode node)
: id = node.attributes.remove('id')!,
name = node.attributes.remove('name')!,
defaultValue = node.attributes['default'] != null
? int.parse(node.attributes.remove('default')!)
: null,
extraAttributes = node.attributes;