toMap method

Map<String, Object?> toMap()

Implementation

Map<String, Object?> toMap() {
  return {
    "debug": debug,
    "sdkUrl": sdkUrl,
    "eventUrl": eventUrl,
    "monitoringUrl": monitoringUrl,
    "sessionTimeoutMillis": sessionTimeoutMillis,
    "pollingIntervalMillis": pollingIntervalMillis,
    "eventFlushIntervalMillis": eventFlushIntervalMillis,
    "eventFlushThreshold": eventFlushThreshold,
    "exposureEventDedupIntervalMillis": exposureEventDedupIntervalMillis,
  };
}