FeatureValue constructor

FeatureValue({
  1. CategoricalValue? categoricalValue,
  2. String? featureColumn,
  3. double? numericalValue,
})

Implementation

FeatureValue({
  this.categoricalValue,
  this.featureColumn,
  this.numericalValue,
});