getScailoClientForGoodsDispatchesService function
Get the client to access the Goods Dispatches service
Implementation
GoodsDispatchesServiceClient getScailoClientForGoodsDispatchesService() {
return GoodsDispatchesServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}