getStockReservation method
Get stock reservation by ID
Implementation
Future<StockReservation> getStockReservation(String reservationId) async {
final response = await _apiClient.get<Map<String, dynamic>>(
'/api/v1/inventory/stock-reservations/$reservationId',
);
return StockReservation.fromJson(response);
}