withAnalytics method

PivoxBuilder withAnalytics(
  1. bool enableAnalytics
)

Enables or disables analytics

If enabled, proxy usage statistics will be tracked

Implementation

PivoxBuilder withAnalytics(bool enableAnalytics) {
  _enableAnalytics = enableAnalytics;
  return this;
}