collectSearchAdsAttribution static method

Future<ApphudError?> collectSearchAdsAttribution()

iOS only. Send search ads attribution data to Apphud.

Returns ApphudError if an error occurred or null otherwise.

Implementation

static Future<ApphudError?> collectSearchAdsAttribution() async {
  final Map<dynamic, dynamic>? result =
      (await _channel.invokeMethod('collectSearchAdsAttribution'));
  return result != null ? ApphudError.fromJson(result) : null;
}