status property
Gets the current status of the update operation.
Returns
- The ContentUpdaterStatus of the update operation.
Throws
- An exception if it fails.
Implementation
ContentUpdaterStatus get status {
final OperationResult resultString = objectMethod(
_pointerId,
'ContentUpdater',
'getStatus',
);
return ContentUpdaterStatusExtension.fromId(resultString['result']);
}