callSeek method

Future<void> callSeek(
  1. int Offset, {
  2. bool noAutoStart = false,
  3. bool allowInteractiveAuthorization = false,
})

Invokes org.mpris.MediaPlayer2.Player.Seek()

Implementation

Future<void> callSeek(int Offset,
    {bool noAutoStart = false,
    bool allowInteractiveAuthorization = false}) async {
  await callMethod(
      'org.mpris.MediaPlayer2.Player', 'Seek', [DBusInt64(Offset)],
      replySignature: DBusSignature(''),
      noAutoStart: noAutoStart,
      allowInteractiveAuthorization: allowInteractiveAuthorization);
}