LeakTrackingTestConfig constructor

const LeakTrackingTestConfig({
  1. LeakDiagnosticConfig leakDiagnosticConfig = const LeakDiagnosticConfig(),
  2. Map<String, int?> notGCedAllowList = const <String, int>{},
  3. Map<String, int?> notDisposedAllowList = const <String, int>{},
  4. bool allowAllNotDisposed = false,
  5. bool allowAllNotGCed = false,
  6. MemoryBaselining? baselining,
  7. bool isLeakTrackingPaused = false,
})

Creates a new instance of LeakTrackingTestConfig.

Implementation

const LeakTrackingTestConfig({
  this.leakDiagnosticConfig = const LeakDiagnosticConfig(),
  this.notGCedAllowList = const <String, int>{},
  this.notDisposedAllowList = const <String, int>{},
  this.allowAllNotDisposed = false,
  this.allowAllNotGCed = false,
  this.baselining,
  this.isLeakTrackingPaused = false,
});