stream method Null safety

LDConfigBuilder stream(
  1. bool stream
)

Enables or disables real-time streaming flag updates.

Defaults to true (streaming enabled), when false polling is used instead.

Implementation

LDConfigBuilder stream(bool stream) {
  this._stream = stream;
  return this;
}