customRevenueWithAttributes static method

void customRevenueWithAttributes(
  1. String eventName,
  2. String currency,
  3. double amount,
  4. Map attributes,
)

Implementation

static void customRevenueWithAttributes(
    String eventName, String currency, double amount, Map attributes) {
  _channel.invokeMethod('customRevenueWithAttributes', {
    'eventName': eventName,
    'currency': currency,
    'amount': amount,
    'attributes': attributes
  });
}