reconfigureClient method

void reconfigureClient(
  1. BootstrapConfiguration bootstrapper(
    1. BootstrapBuilder builder
    )
)

Called to reconfigure the client with new settings.

The default builder will contain all the previous settings.

Only the settings that have changed since will be updated.

Implementation

void reconfigureClient(
  BootstrapConfiguration Function(BootstrapBuilder builder) bootstrapper,
) {
  return _requester.configure(
    bootstrapper(
      BootstrapBuilder.fromConfiguration(
        _requester._configuration,
      ),
    ),
  );
}