textMarks property

List<TextMark> get textMarks

Text annotations recorded within the log.

Returns a list of TextMark objects created during the recording to annotate the log with short textual notes. These marks are added by calling Recorder.addTextMark while recording.

Returns

Implementation

List<TextMark> get textMarks {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LogMetadata',
    'getTextMarks',
  );
  final List<dynamic> retval = resultString['result'];
  return retval.map((final dynamic e) => TextMark.fromJson(e)).toList();
}