getLocation method
Get location by ID
Implementation
Future<Location> getLocation(String locationId) async {
final response = await _apiClient.get<Map<String, dynamic>>(
'/api/v1/locations/$locationId',
);
final data = response['data'] as Map<String, dynamic>;
return Location.fromJson(data);
}