fix
This commit is contained in:
11
lib/request/http_client.dart
Normal file
11
lib/request/http_client.dart
Normal 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user