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