Pointer<T> constructor

Pointer<T>(
  1. int addr,
  2. int size, {
  3. bool safe = false,
  4. bool dummy = false,
  5. int refCount = 1,
})

Implementation

Pointer(this.addr, this.size,
    {this.safe = false, this.dummy = false, this.refCount = 1}) {
  refCount = 1;
  lastAccessTime = DateTime.now().millisecondsSinceEpoch;
}