Logo

Programming-Idioms

History of Idiom 174 > diff from v15 to v16

Edit summary for version 16 by cedricg:
[Dart] Forgot something

Version 15

2020-03-11, 16:35:28

Version 16

2020-03-11, 16:36:07

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to URL u

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to URL u

Imports
import 'package:http/http.dart';
Imports
import 'package:http/http.dart';
Code
await post('https://www.programming-idioms.org/impl-create/174');
Code
await post('https://www.programming-idioms.org/impl-create/174', body: body, headers: headers);