customEventWithData method
Implementation
void customEventWithData(Map eventData) {
try {
if (kIsWeb) {
ReFlutterWebSDK.customEventWithData(eventData);
} else {
RefluttersdkPlatform.instance.customEventWithData(eventData);
}
} catch (e) {
debugPrint("$e");
}
}