toJFloat method
Coerces the value to a JFloat.
If releaseOriginal is true, the underlying reference is deleted
after conversion and this object will be marked as released.
Implementation
JFloat toJFloat({bool releaseOriginal = false}) {
final ret = JFloat(floatValue());
if (releaseOriginal) {
release();
}
return ret;
}