asTypedList method

Uint32List asTypedList(
  1. int length
)

Creates a typed list view backed by memory in the address space.

The returned view will allow access to the memory range from address to address + size * length.

Implementation

Uint32List asTypedList(int length) =>
    boundMemory.buffer.asUint32List(address, length);