trackInstallWithClickToken method
Implementation
@override
Future<LinkTrailAttribution> trackInstallWithClickToken(String token, {required bool force}) async {
try {
final map = await methodChannel.invokeMapMethod<Object?, Object?>('trackInstallWithClickToken', {
'token': token,
'force': force,
});
return LinkTrailAttribution.fromMap(map!);
} on PlatformException catch (e) {
throw LinkTrailException.fromPlatformException(e);
}
}