ListPointer<T> constructor

ListPointer<T>(
  1. List<T> base, [
  2. int offset = 0
])

Creates the list pointer.

Parameters: List base Base list to be pointed.

int offset Offset in the base list.

Implementation

ListPointer(this.base, [this.offset = 0]);