pollingIntervalMillis method Null safety

LDConfigBuilder pollingIntervalMillis(
  1. int pollingIntervalMillis
)

Sets the interval between foreground flag poll requests.

Foreground polling is only used when streaming has been disabled with LDConfigBuilder.stream.

Implementation

LDConfigBuilder pollingIntervalMillis(int pollingIntervalMillis) {
  this._pollingIntervalMillis = pollingIntervalMillis;
  return this;
}