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