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