getUserFeature static method
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;
}
}