isStarted property

bool get isStarted

Checks if the content updater has started.

Returns

  • True if the content update process has started, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get isStarted {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ContentUpdater',
    'isStarted',
  );

  return resultString['result'];
}