setTelemetryEnabled method
Enables or disables the collection of anonymized telemetry data.
The returned Future completes after the change has been made on the platform side.
Implementation
Future<void> setTelemetryEnabled(bool enabled) async {
if (_disposed) {
return;
}
return await _nbMapsGlPlatform.setTelemetryEnabled(enabled);
}