debugAllocation function

void debugAllocation(
  1. String name,
  2. int address,
  3. int len
)

Implementation

void debugAllocation(String name, int address, int len) {
  print("$name - address: $address ; len: $len");
}