onePassLogin method

Future<Map?> onePassLogin({
  1. bool animated = true,
})

Implementation

Future<Map<dynamic, dynamic>?> /*!*/ onePassLogin(
    {bool animated = true}) async {
  print("$flutter_log" + "onePassLogin");

  String method = "onePassLogin";
  var result = await _channel.invokeMethod(method, {"animated": animated});
  requestQueue.remove(method);
  return result;
}