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