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) => e._option).toList());
}