FaceEmbedding constructor

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

Implementation

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