CmpConfig constructor

CmpConfig({
  1. required String id,
  2. required String domain,
  3. required String appName,
  4. required String language,
  5. String? idfaOrGaid,
  6. int timeout = 5000,
  7. bool jumpToSettingsPage = false,
  8. String? designId,
  9. bool isDebugMode = false,
})

Implementation

CmpConfig({
  required this.id,
  required this.domain,
  required this.appName,
  required this.language,
  this.idfaOrGaid,
  this.timeout = 5000, // Default value set to 5000
  this.jumpToSettingsPage = false, // Default value set to false
  this.designId,
  this.isDebugMode = false, // Default value set to false
});