LeakSummary constructor

LeakSummary(
  1. Map<LeakType, int> totals, {
  2. DateTime? time,
})

Implementation

LeakSummary(this.totals, {DateTime? time}) {
  this.time = time ?? DateTime.now();
}