pause method
Pauses the job.
Return Value: A value indicating whether the job was successfully paused.
Implementation
bool pause() {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Job_pause(
_handle,
errorHandler,
);
});
}