logCompletedRegistration method

Future<void> logCompletedRegistration({
  1. String? registrationMethod,
})

Log this event when the user has completed registration with the app. Parameter registrationMethod is used to specify the method the user has used to register for the app, e.g. "Facebook", "email", "Google", etc. See: https://developers.facebook.com/docs/reference/androidsdk/current/facebook/com/facebook/appevents/appeventsconstants.html/#eventnamecompletedregistration

Implementation

Future<void> logCompletedRegistration({String? registrationMethod}) {
  return logEvent(
    name: eventNameCompletedRegistration,
    parameters: {
      paramNameRegistrationMethod: registrationMethod,
    },
  );
}