isStopped property

bool get isStopped

Whether the data source is stopped/paused.

Returns

  • bool: True when the source is stopped or paused, false otherwise.

See also:

  • start - Starts the data source.
  • stop - Stops the data source.

Implementation

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

  return resultString['result'];
}