trackView method

Future<void> trackView(
  1. MBAutomationView view
)

Tracks a view, this function saves the view in the DB, it'll be sent when _checkQueue() is invoked by the timer. @param view The view to track.

Implementation

Future<void> trackView(MBAutomationView view) async {
  return _saveViewInDb(view);
}