addAllocList method

void addAllocList(
  1. List<Pointer<NativeType>> args
)
inherited

Adds a list of pointers to the list of allocated pointers.

Implementation

void addAllocList(List<Pointer> args) {
  _allocated.addAll(args);
}