getStoryPosition method

Future<int?> getStoryPosition()

Returns the current slide index. int value starting with 0 from the first slide

Implementation

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