pause method

GemError pause()

Pauses playback.

The operation stops the progression of the playback. Call resume to continue playback from the current position.

Returns

See also:

  • resume - Resumes playback after a pause.

Implementation

GemError pause() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PlaybackContainer',
    'pause',
  );
  final int retVal = resultString['result'];
  return GemErrorExtension.fromCode(retVal);
}