startTrackingWithConfig method
Start tracking with configuration - matches your React Native startTrackingWithConfig
Implementation
@override
Future<bool> startTrackingWithConfig(String apiKey, String customerID, String verificationId
) async {
try {
final result = await methodChannel.invokeMethod<bool>('startTrackingWithConfig', {
'apiKey': apiKey,
'customerID': customerID,
'verificationId': verificationId
,
});
return result ?? false;
} on PlatformException catch (e) {
throw Exception('TRACKING_ERROR: ${e.message}');
}
}