getUserFeature static method

Future<String?> getUserFeature({
  1. required String userId,
})

Get fingerprint feature data for a specific user ID

Implementation

static Future<String?> getUserFeature({required String userId}) async {
  try {
    return await _channel.invokeMethod('getUserFeature', <String, String>{'id': userId});
  } catch (e) {
    return null;
  }
}