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