logCompleteRegistration method

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

Implementation

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

  });
  return result;
}