sendEventToBeacon method
send the event to Beacon
Implementation
void sendEventToBeacon(TBLBeaconEvent event) {
_tblBeaconHandler.sendBeaconEvent(event, onSuccess: () {
print("Sent event to Beacon");
}, onFailure: (e) {
TBLLogger.logException('Failed to send event to Beacon: $e');
});
}