progress property
The current progress of the job as a percentage complete.
When the progress value changes the Job.onProgressChanged event is fired.
Implementation
int get progress {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Job_getProgress(_handle, errorHandler);
});
}