ConversionNode<T> constructor
ConversionNode<T> ({
- required T name,
- List<
ConversionNode< leafNodes = const [],T> > - double coefficientProduct = 1.0,
- double coefficientSum = 0.0,
- double? value,
- String? stringValue,
- ConversionType conversionType = ConversionType.linearConversion,
- int? base,
- bool isConverted = false,
Implementation
ConversionNode({
required this.name,
this.leafNodes = const [],
this.coefficientProduct = 1.0,
this.coefficientSum = 0.0,
this.value,
this.stringValue,
this.conversionType = ConversionType.linearConversion,
this.base,
this.isConverted = false,
});