getVideoCurrentPosition method

Future<double?> getVideoCurrentPosition()

Returns the timestamp of the currently playing video in seconds

Implementation

Future<double?> getVideoCurrentPosition() async {
  return await _methodChannel.invokeMethod<double>('getVideoCurrentPosition');
}