soundMarks property

List<SoundMark> get soundMarks

Sound annotations recorded within the log.

Returns a list of SoundMark objects describing intervals where audio was recorded during the session. These marks are generated when audio recording is enabled in the Recorder during the session.

Returns

Implementation

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