parseMapClientUrl method

Future<String?> parseMapClientUrl(
  1. String venueId,
  2. String locationId
)

Parses a venueId and a locationId to create a mapClientUrl

Implementation

Future<String?> parseMapClientUrl(String venueId, String locationId) async {
  return await UtilPlatform.instance.parseMapClientUrl(venueId, locationId);
}