getObject method

Future<Obj> getObject(
  1. String objectId, {
  2. int? offset,
  3. int? count,
})

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);
}