removeTranscriptMessage method

Future<void> removeTranscriptMessage(
  1. String targetUuid
)

Remove a message from the transcript by UUID.

Implementation

Future<void> removeTranscriptMessage(String targetUuid) async {
  if (_sessionFile == null) return;
  _incrementPendingWrites();
  try {
    await _removeMessageByUuid(targetUuid);
  } finally {
    _decrementPendingWrites();
  }
}