Files
Tanami_App/lib/features/countrySelection/bloc/GetCountry/GetCountryAPI.dart
2024-07-11 11:05:57 +05:30

15 lines
394 B
Dart

import '../../../../Api_Helper/base_manager.dart';
import '../../../../shared/api/api_endpoints.dart';
import '../../../../shared/api/network_api_services.dart';
class GetCountryAPI {
GetCountryAPI();
Future<ResponseData> getcountryAPI() async {
String url=ApiEndpoints.getcountryurl;
final response = await NetworkApiService().get(
url,
);
return response;
}
}