logTutorialBegin method

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

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

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