logCompleteRegistrationEvent method

Future<void> logCompleteRegistrationEvent({
  1. required String registrationMethod,
  2. required String name,
  3. required String currency,
})

This event when the user has completed registration with the app. Parameter registrationMethod is used to specify the method the user has

Implementation

Future<void> logCompleteRegistrationEvent(
    {
      required String registrationMethod,
      required String name,
      required String currency
    }) {
    final data = <String, dynamic>{
        'registrationMethod': registrationMethod,
        'name': name,
        'currency': currency,
    };
  return _channel!.invokeMethod('logCompleteRegistrationEvent',data);
}