value property - FloatPointer extension - dart:ffi library (original) (raw)

description

double getvalue

The float at address.

A Dart double loses precision before being stored, and the float value is converted to a double when it is loaded.

The address must be 4-byte aligned.

Implementation

external double get value;

setvalue (double value)

Implementation

external void set value(double value);