Files
Tanami_App/lib/features/countrySelection/presentation/bloc/GetCountry/GetCountryAPI.dart
2024-07-10 17:34:49 +05:30

14 lines
374 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<void> getcountryAPI() async {
String url=ApiEndpoints.getcountryurl;
final response = await NetworkApiService().get(
url,
);
}
}