Node constructor
Node({})
Implementation
Node({
this.leafNodes = const [],
this.coefficientProduct = 1.0,
this.coefficientSum = 0.0,
this.name,
this.value,
this.convertedNode = false,
this.selectedNode = false,
this.conversionType = linearConversion,
this.stringValue,
this.base,
});