updateRuntimeSettings method

Future<void> updateRuntimeSettings(
  1. RuntimeSettings settings
)

Updates the runtime settings and writes the new settings to the database.

Implementation

Future<void> updateRuntimeSettings(internal.RuntimeSettings settings) async {
  _runtimeSettings = settings;
  _logManager = LogManager(settings);
  await _storeRuntimeSettings(settings);
}