Logo

Programming-Idioms

History of Idiom 174 > diff from v16 to v17

Edit summary for version 17 by programming-idioms.org:
[Dart] Variable name u.

Version 16

2020-03-11, 16:36:07

Version 17

2020-03-16, 17:18:46

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', body: body, headers: headers);
Code
await post(u, body: body, headers: headers);