gc method

dynamic gc()

Implementation

gc() {
  var isolateId = main?.id;
  if (connected && isolateId != null) {
    service?.getAllocationProfile(isolateId, gc: true);
  }
}