getLastAttribution method

  1. @override
Future<LinkTrailAttribution?> getLastAttribution()
override

Implementation

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