registerFace method

Future registerFace(
  1. File file,
  2. BuildContext context,
  3. Function registerFaceId
)

Implementation

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