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