Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

startFiling_post.dart 855B

1234567891011121314151617181920212223242526272829303132333435
  1. import 'dart:convert';
  2. import 'dart:core';
  3. import 'package:flutter/material.dart';
  4. import 'package:http/http.dart' as http;
  5. import 'package:tower_app/constants.dart';
  6. import 'dart:developer' as developer;
  7. import 'package:shared_preferences/shared_preferences.dart';
  8. class StartFiling_Post {
  9. late String id;
  10. late int user_id;
  11. StartFiling_Post({required this.id});
  12. static Future<String> connectToAPI(String id, int user_id) async {
  13. String URL = baseURL + "/api/start_filing";
  14. final SharedPreferences prefs = await SharedPreferences.getInstance();
  15. var sendData = await http.post(Uri.parse(URL), body: jsonEncode({
  16. "data": [
  17. {
  18. "id": id,
  19. "user_id": user_id
  20. }
  21. ]
  22. }), headers: {
  23. "Content-Type": "application/json",
  24. "Api-key": apiKey
  25. });
  26. return sendData.body;
  27. }
  28. }