DMHubOptions constructor

DMHubOptions({
  1. required String? trackUrl,
  2. required String? appId,
  3. required String? appName,
  4. bool? enableDebugLogging,
  5. bool? autoTrackOpenAppEvent,
  6. List<String>? disableCollect,
})

Implementation

DMHubOptions(
    {required this.trackUrl,
    required this.appId,
    required this.appName,
    this.enableDebugLogging,
    this.autoTrackOpenAppEvent,
    this.disableCollect});