TextMark constructor

TextMark(
  1. int offset,
  2. Coordinates coordinates,
  3. String report
)

Creates a TextMark with the specified offset, coordinates, and report.

API users typically do not create TextMark instances directly.

Parameters

  • offset: Timestamp (in milliseconds) of the text mark within the log.
  • coordinates: Coordinates where the text mark was created.
  • report: The textual note or annotation associated with the mark.

Implementation

TextMark(this.offset, this.coordinates, this.report);