isEmpty method
Returns true if no objects are in this box.
Implementation
bool isEmpty() {
final isEmpty = malloc<Bool>();
try {
checkObx(C.box_is_empty(_ptr, isEmpty));
return isEmpty.value;
} finally {
malloc.free(isEmpty);
}
}