Node constructor

Node({
  1. List<Node> leafNodes = const [],
  2. double coefficientProduct = 1.0,
  3. double coefficientSum = 0.0,
  4. dynamic name,
  5. double? value,
  6. bool convertedNode = false,
  7. bool selectedNode = false,
  8. int conversionType = linearConversion,
  9. String? stringValue,
  10. int? base,
})

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,
});