hasGraph method

Future<bool?> hasGraph()

Check whether the venue has a valid routing graph

Implementation

Future<bool?> hasGraph() async {
  if (_graphId == null) {
    return false;
  }
  return await UtilPlatform.instance.venueHasGraph(_id.value);
}