update method

Future<void> update({
  1. bool force = false,
})

Updates all updatable adapters.

Implementation

Future<void> update({bool force = false}) async {
  await Future.wait(_adapters.map((adapter) => adapter.update(this, force: force)));
  if (force) {
    _logger?.logExperiments(this);
  }
}