track method

void track(
  1. AppFitEvent event
)

Tracks an event with the provided event.

This is used to track events in the AppFit dashboard.

Implementation

void track(AppFitEvent event) async {
  await _eventDigester.digest(event);
}