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
Future<void> logTutorialBegin({
Map<String, Object>? parameters,
}) {
_assertParameterTypesAreCorrect(parameters);
return _delegate.logEvent(
name: 'tutorial_begin',
parameters: parameters,
);
}