LeakedInfo constructor

LeakedInfo(
  1. List<RetainingNode> retainingPath,
  2. String? gcRootType, {
  3. int? timestamp,
})

Implementation

LeakedInfo(this.retainingPath, this.gcRootType, {this.timestamp}) {
  if (timestamp == null) {
    timestamp = DateTime.now().millisecondsSinceEpoch;
  }
}