storeFaceImages method
Implementation
Future<void> storeFaceImages(int id, Map<String, Uint8List> images) async {
await (update(faceEmbeddings)..where((tbl) => tbl.id.equals(id)))
.write(FaceEmbeddingsCompanion(
imageCenter: Value(images["Center"]),
imageLeft: Value(images["Left"]),
imageRight: Value(images["Right"]),
imageUp: Value(images["Up"]),
imageDown: Value(images["Down"]),
));
print("✅ All images stored for ID: $id");
}