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:
Implementation
bool get isStopped {
final OperationResult resultString = objectMethod(
pointerId,
'DataSourceContainer',
'isStopped',
);
return resultString['result'];
}