setPropertyDouble method
Implementation
void setPropertyDouble(
String name,
double value,
) {
final ptr = calloc<Double>(1)..value = value;
_setProperty(
name,
mpv_format.MPV_FORMAT_DOUBLE,
ptr.cast(),
);
calloc.free(ptr);
}