FaceEmbeddingsCompanion constructor

const FaceEmbeddingsCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<String> name = const Value.absent(),
  3. Value<Uint8List?> imageCenter = const Value.absent(),
  4. Value<Uint8List?> imageLeft = const Value.absent(),
  5. Value<Uint8List?> imageRight = const Value.absent(),
  6. Value<Uint8List?> imageUp = const Value.absent(),
  7. Value<Uint8List?> imageDown = const Value.absent(),
  8. Value<List<double>> embeddingCenter = const Value.absent(),
  9. Value<List<double>> embeddingLeft = const Value.absent(),
  10. Value<List<double>> embeddingRight = const Value.absent(),
  11. Value<List<double>> embeddingUp = const Value.absent(),
  12. Value<List<double>> embeddingDown = const Value.absent(),
})

Implementation

const FaceEmbeddingsCompanion({
  this.id = const Value.absent(),
  this.name = const Value.absent(),
  this.imageCenter = const Value.absent(),
  this.imageLeft = const Value.absent(),
  this.imageRight = const Value.absent(),
  this.imageUp = const Value.absent(),
  this.imageDown = const Value.absent(),
  this.embeddingCenter = const Value.absent(),
  this.embeddingLeft = const Value.absent(),
  this.embeddingRight = const Value.absent(),
  this.embeddingUp = const Value.absent(),
  this.embeddingDown = const Value.absent(),
});