callSeek method
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);
}