goToProgression method

  1. @override
Future<bool> goToProgression(
  1. double progression
)
override

Go to a specific progression in the current resource of the publication, where 0.0 is the start and 1.0 is the end.

Implementation

@override
Future<bool> goToProgression(double progression) async =>
    await methodChannel.invokeMethod<bool>('goToProgression', progression) ?? false;