showAccessPoint method

Future<String?> showAccessPoint(
  1. AccessPointLocation location, {
  2. bool showHighlights = false,
})

Show the iOS Access Point.

Implementation

Future<String?> showAccessPoint(
  AccessPointLocation location, {
  bool showHighlights = false,
}) async {
  return await FirebaseGameServices.platform
      .showAccessPoint(location, showHighlights: showHighlights);
}