import 'dart:convert'; import 'dart:core'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; import 'package:employee_selfservice_mobile/constants.dart'; import 'dart:developer' as developer; import 'package:shared_preferences/shared_preferences.dart'; class PengajuanReimburse_Post { late String name; late String product; late String date; late String total; late String payment_mode; late String description; late List file; late String session; PengajuanReimburse_Post({required this.session}); static Future connectToAPI(String name, String product, String date, String total, String payment_mode, String description, List file) async { String URL = baseURL + "/api/v1/pengajuan_reimburse"; final SharedPreferences prefs = await SharedPreferences.getInstance(); final session = prefs.getString('session'); var sendData = await http.post(Uri.parse(URL), body: jsonEncode({ "data": [ { "name" : name, "product" : product, "date" : date, "total" : total, "payment_mode" : payment_mode, "description" : description, "session": session, "file" : file } ] }), headers: { "Content-Type": "application/json", "Api-key": apiKey }); developer.log(sendData.body, name: "Pengajuan REIMBURSE"); return sendData.body; } }