getObject method
Implementation
Future<vm.Obj> getObject(String objectId, {int? offset, int? count}) async {
vm.VmService virtualMachine = await getVMService();
return virtualMachine.getObject(isolateId!, objectId,
offset: offset, count: count);
}