registerFace method
Implementation
Future<dynamic> registerFace(
File file,
BuildContext context,
Function registerFaceId,
) async {
try {
registerFaceId(file);
} catch (e) {
} finally {}
}
Future<dynamic> registerFace(
File file,
BuildContext context,
Function registerFaceId,
) async {
try {
registerFaceId(file);
} catch (e) {
} finally {}
}