logTutorialComplete method

Future<void> logTutorialComplete({
  1. Map<String, Object?>? parameters,
})

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({
  Map<String, Object?>? parameters,
}) {
  _assertParameterTypesAreCorrect(parameters);

  return _delegate.logEvent(
    name: 'tutorial_complete',
    parameters: parameters,
  );
}