inlineUsersInEvents method Null safety

LDConfigBuilder inlineUsersInEvents(
  1. bool inlineUsersInEvents
)

Sets whether the SDK will send the entire LDUser object to the service in every event.

By default the SDK will only send an event when updating the user context which associates the key with the non-private user attributes. Later events will only include the key of the user.

When LDConfig.inlineUsersInEvents is true, the SDK will include the full user (all non-private user attributes) in every event.

Implementation

LDConfigBuilder inlineUsersInEvents(bool inlineUsersInEvents) {
  this._inlineUsersInEvents = inlineUsersInEvents;
  return this;
}