logTutorialBegin method
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.
Implementation
@override
Future<void> logTutorialBegin({
Map<String, Object>? parameters,
}) async {
await _firebaseAnalytics.logTutorialBegin(parameters: parameters);
}