endSeeking method

Future<bool> endSeeking ()

Stop seeking.

Implementation

Future<bool> endSeeking() async {
  if (Platform.isIOS) {
    var result = await playerChannel.invokeMethod('endSeeking');
    return result;
  } else {
    throw PlatformException(
        code: "Device is not iOS!",
        message:
            "Currently only iOS is supported. Feel free to contribute to Playify to help support Android.");
  }
}