asUint32List method

Stream<Uint32List> asUint32List()

Creates Uint32List views over the underlying data buffer, see ByteBuffer.asUint32List for details.

Implementation

Stream<Uint32List> asUint32List() => map((input) =>
    input.buffer.asUint32List(input.offsetInBytes, input.lengthInBytes));