addTextMark method

void addTextMark(
  1. String text
)

Adds a textual annotation (text mark) at the current position in the log.

Call this method before stopping the record.

Parameters

  • IN text The text content of the annotation.

Throws

  • An exception if it fails

Implementation

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