isStarted property

bool get isStarted

Checks if the content updater has started.

Returns

  • bool: true if the update process has been started, otherwise false.

Implementation

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

  return resultString['result'];
}