customRevenue static method

void customRevenue(
  1. String eventName,
  2. String currency,
  3. double amount
)

Implementation

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