logTutorialComplete method

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

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.

See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#TUTORIAL_COMPLETE

Implementation

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