track static method
Implementation
static Future<void> track(String eventName, Map<String, dynamic>? properties,
Map<String, dynamic>? otherIds) async {
await methodChannel.invokeMethod('track', <String, dynamic>{
'eventName': eventName,
'properties': properties ?? {},
'otherIds': otherIds ?? {}
});
}