isStarted property

bool get isStarted

Check if content updater is started.

Returns

  • True if content update can be applied, false otherwise.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}