booleanValue method

bool booleanValue({
  1. bool releaseOriginal = false,
})

Implementation

bool booleanValue({bool releaseOriginal = false}) {
  reference.ensureNotNull();
  final ret = _booleanValueId(this, const jbooleanType(), []);
  if (releaseOriginal) {
    release();
  }
  return ret;
}