getDebugOptions method
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();
});
}