setPlaybackTime method

Future<void> setPlaybackTime(
  1. double time
)

Set the playback time of the current song in the queue.

Implementation

Future<void> setPlaybackTime(double time) async {
  await playerChannel
      .invokeMethod('setPlaybackTime', <String, dynamic>{'time': time});
}