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