This commit is contained in:
2025-01-24 19:00:27 +05:30
parent 26aaa8c4e8
commit d9ddf69827
47 changed files with 3291 additions and 108 deletions

View File

@@ -0,0 +1,27 @@
// import 'dart:convert';
// import 'package:vendor_app/src/core/constant/api.dart';
// import 'package:vendor_app/src/core/network_services/api_services.dart';
// class HomeService extends ApiService {
// Future getMe(data) async {
// var response = await api.get(APIURL.getMe, data: jsonEncode(data));
// //response.statusCode
// return response;
// }
// Future refresh_token(data) async
// {
// var response = await api.post(APIURL.refresh_token, data: jsonEncode(data));
// //response.statusCode
// return response;
// }
// }