sendEvent method

Future<void> sendEvent(
  1. EventSpa event
)

Save and send the event to the server or Send to Delete this event in hive bd event is the event which need to send add the default data to the event

Implementation

Future<void> sendEvent(EventSpa event) async {
  return _eventManager.saveEvent(
    (await  _defaultDataEvent()).copyWith(event),
  );
}