sendEventNow static method
Send event now
Implementation
static void sendEventNow(Event event, OnSendSuccessCallback success, OnSendFailedCallback failed) {
SchedulerBinding.instance.addPostFrameCallback((_) {
_native.sendEventNow(event, success, failed);
});
}