resume method

String resume(
  1. String conversationId
)

Implementation

String resume(String conversationId) {
  switch (this) {
    case TCliTool.claude:
      return '--conversation $conversationId';
    case TCliTool.codex:
      return 'resume $conversationId';
    case TCliTool.cursor:
      return '--resume=$conversationId';
  }
}