trackInAppPurchase static method

  1. @Deprecated("Will be removed in future releases.")
Future<void> trackInAppPurchase(
  1. double amount,
  2. String currency
)

Tracks in-app purchase information (amount and currency) and sends info to our servers for analytics

Implementation

@Deprecated("Will be removed in future releases.")
static Future<void> trackInAppPurchase(double amount, String currency) async {
  return _channel.invokeMethod('trackInAppPurchase', {
    'amount': amount,
    'currency': currency,
  });
}