setDebugOptions method

Future<void> setDebugOptions(
  1. List<MapWidgetDebugOptions> debugOptions
)

Set debug options for the widget associated with the map.

Implementation

Future<void> setDebugOptions(List<MapWidgetDebugOptions> debugOptions) {
  return _mapInterface.setDebugOptions(debugOptions.map((e) => _MapWidgetDebugOptionsBox(option: e.option)).toList());
}