getPlaybackTime method

Future<double> getPlaybackTime()

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

Implementation

Future<double> getPlaybackTime() async {
  final result = await playerChannel.invokeMethod('getPlaybackTime');
  return result;
}