trackCustomEvent static method
Sets the business user ID to the string for the tracker
namespace.
Implementation
static Future<void> trackCustomEvent(String? name, String? data,
{required String tracker}) async {
await _channel.invokeMethod(
'trackCustomEvent', {'tracker': tracker, 'name': name, 'data': data});
}