seekForward method

Future<bool> seekForward(
  1. int seconds, [
  2. String? player
])

Seek forward by seconds

Implementation

Future<bool> seekForward(int seconds, [String? player]) async {
  return seek(seconds * 1000000, player);
}