LeakReport constructor

LeakReport({
  1. required String trackedClass,
  2. required Map<String, dynamic>? context,
  3. required int code,
  4. required String type,
  5. required String? phase,
})

Implementation

LeakReport({
  required this.trackedClass,
  required this.context,
  required this.code,
  required this.type,
  required this.phase,
});