addTextMark method

void addTextMark(
  1. String text
)

Add a textual annotation (text mark) to the current recording.

Call before stopping the recording to include the annotation in the final log file.

Parameters

  • text: The annotation text to add.

Implementation

void addTextMark(final String text) {
  objectMethod(pointerId, 'Recorder', 'addTextMark', args: text);
}