disableBackgroundUpdating method Null safety

LDConfigBuilder disableBackgroundUpdating(
  1. bool disableBackgroundUpdating
)

Disables or enables background polling requests for flag values.

See LDConfigBuilder.backgroundPollingIntervalMillis for configuring the interval between background polling requests.

Implementation

LDConfigBuilder disableBackgroundUpdating(bool disableBackgroundUpdating) {
  this._disableBackgroundUpdating = disableBackgroundUpdating;
  return this;
}