logTutorialBegin method

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

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

@override
Future<void> logTutorialBegin({
  Map<String, Object>? parameters,
}) async {
  await _firebaseAnalytics.logTutorialBegin(parameters: parameters);
}