pause method
Pause the playback.
Returns
- GemError.success on success
- GemError.engineNotInitialized if the datasource is not available
- GemError.upToDate if the pause failed
Throws
- An exception if it fails
Implementation
GemError pause() {
final OperationResult resultString = objectMethod(
_pointerId,
'PlaybackContainer',
'pause',
);
final int retVal = resultString['result'];
return GemErrorExtension.fromCode(retVal);
}