FeatureValue constructor

FeatureValue({
  1. bool? boolValue,
  2. double? doubleValue,
  3. int? int64Value,
  4. String? stringValue,
  5. BoolArray? boolArrayValue,
  6. DoubleArray? doubleArrayValue,
  7. Int64Array? int64ArrayValue,
  8. StringArray? stringArrayValue,
  9. Uint8List? bytesValue,
  10. StructValue? structValue,
  11. FeatureValue_Metadata? metadata,
})

Implementation

FeatureValue({
  this.boolValue,
  this.doubleValue,
  this.int64Value,
  this.stringValue,
  this.boolArrayValue,
  this.doubleArrayValue,
  this.int64ArrayValue,
  this.stringArrayValue,
  this.bytesValue,
  this.structValue,
  this.metadata,
}) : super(fullyQualifiedName);