isStopped property

bool get isStopped

Check if source is paused

Returns

  • True if stopped, false if not.

Throws

  • An exception if it fails

Implementation

bool get isStopped {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DataSourceContainer',
    'isStopped',
  );

  return resultString['result'];
}