Future<Duration> position

The position in the current video.

Source

Future<Duration> get position async {
  if (isDisposed) {
    return null;
  }
  return new Duration(
      milliseconds:
          await _channel.invokeMethod('position', {'textureId': _textureId}));
}