klass property
The class representing the type of this object.
Implementation
HeapSnapshotClass get klass {
  if (_classId <= 0) {
    return HeapSnapshotClass._sentinel();
  }
  return _graph._classes[_classId];
}The class representing the type of this object.
HeapSnapshotClass get klass {
  if (_classId <= 0) {
    return HeapSnapshotClass._sentinel();
  }
  return _graph._classes[_classId];
}