logSignUp method
Logs the standard sign_up
event.
This event indicates that a user has signed up for an account in your app. The parameter signifies the method by which the user signed up. Use this event to understand the different behaviors between logged in and logged out users.
Implementation
@override
Future<void> logSignUp({
required String signUpMethod,
Map<String, Object>? parameters,
}) async {
await _firebaseAnalytics.logSignUp(
signUpMethod: signUpMethod,
parameters: parameters,
);
}