registerFinger static method

Future<bool?> registerFinger({
  1. String? userId,
})

Implementation

static Future<bool?> registerFinger({String? userId}) async {
  final bool? success = await _channel
      .invokeMethod('register', <String, String?>{'id': userId});
  return success;
}