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