NativeUint32Array.fromList constructor
Implementation
NativeUint32Array.fromList(List<int> listData) : super.fromList(listData) {
_list = calloc<Uint32>(listData.length);
oneByteSize = sizeOf<Uint32>();
this.toDartList().setAll(0, listData);
}