Uint64List.view constructor

Uint64List.view(
  1. ByteBuffer buffer,
  2. [int offsetInBytes = 0,
  3. int? length]
)

Construct a list view

Implementation

Uint64List.view($data.ByteBuffer buffer, [int offsetInBytes = 0, int? length])
    : inner = $data.Uint64List.view(buffer, offsetInBytes, length);