dumpAllocationProfile method

Future<void> dumpAllocationProfile()

Implementation

Future<void> dumpAllocationProfile() async {
  if (connected) {
    serviceClient
        .getAllocationProfile(vm!.isolates!.first.id!)
        .then((value) => allocationProfile = value);
  }
}