added template for adding headers to the request

This commit is contained in:
Aditya Mayukh Som
2024-03-21 17:54:33 +05:30
parent f47f3a5d74
commit bcee13e989

View File

@ -34,4 +34,8 @@ public class Main {
.{{method}}(requestURL)\n
''';
final String kTemplateRequestHeader = '''
.header("{{name}}", "{{value}}")\n
''';
}