trackRefund method
Implementation
void trackRefund({
required String transactionId,
double? value,
String? currency,
}) =>
event('refund', properties: {
'transaction_id': transactionId,
if (value != null) 'value': value,
if (currency != null) 'currency': currency,
});