Future<void> saveEvent(EventSpa event) async { final box = Hive.box<EventSpa>(boxName); await box.add(event); await sendEvents(); }