InitOptions constructor

const InitOptions({
  1. required String apiKey,
  2. required String baseUrl,
  3. bool debug = false,
  4. bool autoCaptureEnabled = true,
  5. bool androidAnrWatchdogEnabled = false,
  6. int androidAnrTimeoutMs = 5000,
})

Implementation

const InitOptions({
  required this.apiKey,
  required this.baseUrl,
  this.debug = false,
  this.autoCaptureEnabled = true,
  this.androidAnrWatchdogEnabled = false,
  this.androidAnrTimeoutMs = 5000,
});