progress property
Gets the progress value of the update operation.
Progress is expressed as an integer percentage (0..100) and is calculated with respect to ProgressListener.progressMultiplier.
Returns
int: The current progress value for the update operation.
Implementation
int get progress {
final OperationResult resultString = objectMethod(
pointerId,
'ContentUpdater',
'getProgress',
);
return resultString['result'];
}