toUint32List method
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);
}