From a4fddf64b813d3b33891738381c94a039182022e Mon Sep 17 00:00:00 2001 From: Ashita Prasad Date: Tue, 29 Aug 2023 04:59:34 +0530 Subject: [PATCH] Update consts.dart --- lib/consts.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/consts.dart b/lib/consts.dart index e96982a6..89f92172 100644 --- a/lib/consts.dart +++ b/lib/consts.dart @@ -232,7 +232,7 @@ const kDefaultContentType = ContentType.json; enum CodegenLanguage { dartHttp("Dart (http)", "dart", "dart"), - kotlinOkHttp("Kotlin (OkHttp)", "java", "kt"); + kotlinOkHttp("Kotlin (okhttp3)", "java", "kt"); const CodegenLanguage(this.label, this.codeHighlightLang, this.ext); final String label;