toUint32List method

Uint32List toUint32List([
  1. int offset = 0
])

Implementation

Uint32List toUint32List([int offset = 0]) {
  if (buffer is Uint8List) {
    final b = buffer as Uint8List;
    return Uint32List.view(b.buffer, b.offsetInBytes + this.offset + offset);
  }
  return Uint32List.view(toUint8List().buffer);
}