sendRFQ method

Future<RFQ> sendRFQ(
  1. String rfqId
)

Send RFQ to suppliers

Implementation

Future<RFQ> sendRFQ(String rfqId) async {
  final response = await _apiClient.post<Map<String, dynamic>>(
    '/api/v1/purchase/rfqs/$rfqId/send',
  );

  return RFQ.fromJson(response);
}