getDebugOptions method

Future<List<MapWidgetDebugOptions>> getDebugOptions()

Debug options for the widget associated with the map.

Implementation

Future<List<MapWidgetDebugOptions>> getDebugOptions() async {
  return _mapInterface.getDebugOptions().then((value) {
    return value.map((e) => e.widgetDebugOptions).toList();
  });
}