This commit is contained in:
cxc
2023-02-07 17:28:01 +08:00
parent ac65c1dec0
commit 06ff4a41f4
25 changed files with 537 additions and 184 deletions

View File

@ -0,0 +1,11 @@
import 'package:http/http.dart' as http;
class HttpClient {
HttpClient(this.header);
Map<String, String>? header;
Future post(Uri url) {
return http.post(url);
}
}