Answers for "make a request with http"

0

http request using http methods

var client = new http.Client(); 
try { 
   print(await client.get('https://flutter.dev/')); 
} 
finally { 
   client.close(); 
}
Posted by: Guest on June-23-2021
0

create http request

const xhr = new XMLHttpRequest();

let method = 'GET';
let endpoint = 'what you looking for';

xhr.open(method, endpoint);
xhr.send();

xhr.onload = () => {
	'working what you get'
};
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language