customRevenueWithAllAttributes static method
void
customRevenueWithAllAttributes()
Implementation
static void customRevenueWithAllAttributes(
String eventName,
String currency,
double amount,
String productSKU,
String productName,
String productCategory,
int productQuantity,
double productPrice) {
_channel.invokeMethod('customRevenueWithAllAttributes', {
'eventName': eventName,
'currency': currency,
'amount': amount,
'productSKU': productSKU,
'productName': productName,
'productCategory': productCategory,
'productQuantity': productQuantity,
'productPrice': productPrice
});
}