hasGraph property

Future<bool?> get hasGraph

Check whether the venue has a valid routing graph

Implementation

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