processTextAction abstract method

Future<String?> processTextAction(
  1. String id,
  2. String text,
  3. bool readOnly
)

Returns a Future that resolves to a String when the text action returns a transformed text or null when the text action did not return a transformed text.

The id parameter is the text action unique identifier returned by queryTextActions.

The text parameter is the text to be processed.

The readOnly parameter indicates that the transformed text, if it exists, will be used as read-only.

Implementation

Future<String?> processTextAction(String id, String text, bool readOnly);