toDart property - JSFloat64ArrayToFloat64List extension - dart:js_interop library (original) (raw)

description

Float64List gettoDart

Converts this JSFloat64Array to a Float64List by either casting or wrapping it.

When compiling to JavaScript, Float64Lists are JSFloat64Arrays and this operation will be a cast. When compiling to Wasm, a wrapper is introduced. Modifications to this JSFloat64Array will affect theFloat64List and vice versa.

Implementation

external Float64List get toDart;