enableDebugInspection method

  1. @override
void enableDebugInspection()

Populates GoogleMapsFlutterInspectorPlatform.instance to allow inspecting the platform map state.

Implementation

@override
void enableDebugInspection() {
  GoogleMapsInspectorPlatform.instance = GoogleMapsInspectorWeb(
    (int mapId) => _map(mapId).configuration,
    (int mapId) => _map(mapId).clusterManagersController,
  );
}