getAttribution property

Future<String> getAttribution

Returns the attribution results as stringified json or an empty string if not available.

Implementation

Future<String> get getAttribution async {
  try {
    return await _channel.invokeMethod('getAttribution');
  } catch (e) {
    print("Kochava/Tracker/Flutter Error: getAttribution: $e");
    return Future.value("");
  }
}