logCompleteRegistration method

Future<bool> logCompleteRegistration({
  1. required String registrationMethod,
})

Logs Complete Registration Event of FBSDK with registrationMethod

Implementation

Future<bool> logCompleteRegistration(
    {required String registrationMethod}) async {
  final bool result = await _channel.invokeMethod("logCompleteRegistration", {
    "registrationMethod": registrationMethod,
  });
  return result;
}