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