store method

Future<Response> store(
  1. Map<String, String> datas, {
  2. List<MultipartFile>? files,
})

Implementation

Future<Response> store(Map<String, String> datas,
    {List<http.MultipartFile>? files}) async {
  return Repository.post(api, body: datas, headers: await _headers);
}