import 'package:http/http.dart' as http; class HttpClient { HttpClient(this.header); Map? header; Future post(Uri url) { return http.post(url); } }