Last active
July 17, 2024 14:16
-
-
Save austinevick/5502b961f57a3ebdc0bf010c73efab5d to your computer and use it in GitHub Desktop.
Custom header for http request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Map<String, String> customHeader = { | |
'content-type': 'application/json; charset=UTF-8' | |
}; | |
const Map<String, String> customHeader = { | |
'content-type': 'application/json; charset=UTF-8', | |
'Accept': 'application/json' | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment