showAccessPoint method

  1. @override
Future<String?> showAccessPoint(
  1. AccessPointLocation location
)
override

Show the iOS Access Point.

Implementation

@override
Future<String?> showAccessPoint(AccessPointLocation location) async {
  return await _channel.invokeMethod(
      "showAccessPoint", {"location": location.toString().split(".").last});
}