retry method

Retries last search request(for example if it failed)

Use all the options of previous request. Automatically cancels running search if there is one.

Implementation

Future<SearchSessionResult> retry() async {
  final result = await _methodChannel.invokeMethod('retry');

  return SearchSessionResult._fromJson(result);
}