logCompleteRegistration method
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;
}