requestAttributionWithToken method
使用token请求归因详情
Implementation
@override
Future<Map<String, dynamic>> requestAttributionWithToken(String token) async {
try {
final result = await methodChannel
.invokeMethod('requestAttributionWithToken', {'token': token});
if (result is Map) {
return result.cast<String, dynamic>();
}
return {};
} catch (e) {
return {};
}
}