withTrackLifecycleEvents method

RudderConfigBuilder withTrackLifecycleEvents(
  1. bool shouldTrackLifecycleEvents
)

@param shouldTrackLifecycleEvents Whether we should track Application lifecycle events automatically "Application Installed" and "Application Updated" will always be tracked @return RudderConfigBuilder

Implementation

RudderConfigBuilder withTrackLifecycleEvents(
    bool shouldTrackLifecycleEvents) {
  __trackLifecycleEvents = shouldTrackLifecycleEvents;
  return this;
}