isBothSidesArtefacted method
Implementation
bool isBothSidesArtefacted() {
return _usingOp<bool>((arena, opStatus) {
final resultPointer = arena<Bool>();
bindings.MathLibIsBothSidesArtifacted(_pointer, resultPointer, opStatus);
opStatus.ref.throwIfNotSuccessful();
return resultPointer.value;
});
}