fix method

Future<ResponseItemDTO> fix({
  1. StockListPutBody? stockList,
})

Implementation

Future<ResponseItemDTO> fix({StockListPutBody? stockList}) async {
  final response = await _http!.request(
    requestType: RequestType.put,
    path: '/dashboard/stocks/lists/fix',
    data: stockList,
  );

  return ResponseItemDTO(
    response: response,
  );
}