toFloat64List method
Creates a Float64List from this pointer by copying the pointer's data.
length is the length of the array.
null is returned if the pointer is equal to nullptr.
Implementation
Float64List? toFloat64List(int length) {
if (this == nullptr) {
return null;
}
final Float64List list = Float64List(length);
for (int i = 0; i < length; i++) {
list[i] = this[i];
}
return list;
}