removeTranscriptMessage method
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();
}
}