updateLotTracking method
Update lot tracking
Implementation
Future<LotGenealogy> updateLotTracking(
String lotId,
UpdateLotTrackingRequest request,
) async {
final response = await _apiClient.put<Map<String, dynamic>>(
'/api/v1/inventory/lot-genealogies/$lotId',
data: request.toJson(),
);
return LotGenealogy.fromJson(response);
}