FaceEmbedding constructor

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

Implementation

FaceEmbedding({
  required this.id,
  required this.name,
  required this.embeddingCenter,
  required this.embeddingLeft,
  required this.embeddingRight,
  required this.embeddingUp,
  required this.embeddingDown,
  this.imageCenter,
  this.imageLeft,
  this.imageRight,
  this.imageUp,
  this.imageDown,
});