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