Answers for "http request with dart"

1

http dart

//pub dependency
http: ^0.13.2

//import
import 'package:http/http.dart' as http;
Posted by: Guest on October-22-2021
20

flutter http request

import 'package:http/http.dart' as http;

var url = Uri.parse('https://example.com/whatsit/create');
var response = await http.post(url, body: {'name': 'doodle', 'color': 'blue'});
print('Response status: ${response.statusCode}');
print('Response body: ${response.body}');

print(await http.read('https://example.com/foobar.txt'));
Posted by: Guest on April-20-2021

Code answers related to "http request with dart"

Code answers related to "Javascript"

Browse Popular Code Answers by Language