StructLiveList<E, R extends RType>.pointerArray constructor
StructLiveList<E, R extends RType>.pointerArray (
- MemoryPointer<
RType> ? ptrOf(), - StructPointerArrayField<
E, R> field, - List<
E> initial
Pointer to a variable-size array.
Implementation
factory StructLiveList.pointerArray(
MemoryPointer? Function() ptrOf,
StructPointerArrayField<E, R> field,
List<E> initial,
) {
final codec = field.codec;
return ._(ptrOf, field.offset, null, _PointerArrayAccess<E, R>(codec), initial);
}