resume method
Resumes playback.
Continues playback from the current position after a prior pause call.
Returns
- GemError.success on success.
- GemError.engineNotInitialized if the data source is not available.
- GemError.upToDate if the operation failed because the state is already up-to-date.
See also:
- pause - Pauses the playback.
Implementation
GemError resume() {
final OperationResult resultString = objectMethod(
pointerId,
'PlaybackContainer',
'resume',
);
final int retVal = resultString['result'];
return GemErrorExtension.fromCode(retVal);
}