autoAliasingOptOut method Null safety
- bool autoAliasingOptOut
Set to true to opt out of sending automatic alias events.
Unless LDConfig.autoAliasingOptOut is true
, the client will send an automatic alias
event when
LDClient.identify is called with a non-anonymous user when the current user is anonymous.
Implementation
LDConfigBuilder autoAliasingOptOut(bool autoAliasingOptOut) {
this._autoAliasingOptOut = autoAliasingOptOut;
return this;
}