profileGetCleverTapAttributionIdentifier static method

  1. @Deprecated("This method is deprecated since v1.3.0. Use getCleverTapID() instead")
Future<String?> profileGetCleverTapAttributionIdentifier()

Returns a unique CleverTap identifier suitable for use with install attribution providers.

Implementation

@Deprecated(
    "This method is deprecated since v1.3.0. Use getCleverTapID() instead")

/// Returns a unique CleverTap identifier suitable for use with install attribution providers.
static Future<String?> profileGetCleverTapAttributionIdentifier() async {
  return await _dartToNativeMethodChannel
      .invokeMethod('profileGetCleverTapAttributionIdentifier', {});
}