position property

Future<Duration?> position

Implementation

Future<Duration?> get position async {
  if (_isDisposed) {
    return null;
  }
  return await _videoPlayerPlatform.getPosition(_textureId);
}