logTutorialBegin method

Future<void> logTutorialBegin()

Logs the standard tutorial_begin event.

This event signifies the start of the on-boarding process in your app. Use this in a funnel with logTutorialComplete to understand how many users complete this process and move on to the full app experience.

See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#TUTORIAL_BEGIN

Implementation

Future<void> logTutorialBegin() {
  return logEvent(name: 'tutorial_begin');
}