logTutorialComplete method

Future<void> logTutorialComplete()

Logs the standard tutorial_complete event.

Use this event to signify the user's completion of your app's on-boarding process. Add this to a funnel with logTutorialBegin to gauge the completion rate of your on-boarding process.

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

Implementation

Future<void> logTutorialComplete() {
  return logEvent(name: 'tutorial_complete');
}