skipBackward method

Future<void> skipBackward({
  1. int seconds = 5,
})

Skips backward by the specified number of seconds.

seconds - Number of seconds to skip backward (default: 5)

Implementation

Future<void> skipBackward({int seconds = 5}) {
  throw UnimplementedError('skipBackward() has not been implemented.');
}