sendEventToBeacon method

void sendEventToBeacon(
  1. TBLBeaconEvent event
)

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');
    });
  }