doubleTapInParagraph method

Future<void> doubleTapInParagraph(
  1. String nodeId,
  2. int offset, [
  3. Finder? superReaderFinder
])

Simulates a double tap at the given offset within the paragraph with the given nodeId.

Implementation

Future<void> doubleTapInParagraph(String nodeId, int offset, [Finder? superReaderFinder]) async {
  await _tapInParagraph(nodeId, offset, 2, superReaderFinder);
}