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