setCurrentPosition method
Sets the current position (milliseconds from begin/departure/starting point).
Parameters
- IN newPosition The new position to be set
Returns
- The old playback position in milliseconds.
Implementation
int setCurrentPosition(final int newPosition) {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PlaybackContainer',
    'setCurrentPosition',
    args: newPosition,
  );
  return resultString['result'];
}