getLastAttribution method
Implementation
@override
Future<LinkTrailAttribution?> getLastAttribution() async {
final map = await methodChannel.invokeMapMethod<Object?, Object?>('getLastAttribution');
return map == null ? null : LinkTrailAttribution.fromMap(map);
}