Call Number plugin

I’m using Call Number plugin to make a phone call from ionic app it is working fine if the caller number is 10 digit or more.
this.callNumber.callNumber(“18001010101”, true)
.then(res => console.log(‘Launched dialer!’, res))
.catch(err => console.log(‘Error launching dialer’, err));

But my requirement is to dial a emergency number “108” which is 3 digit. the problem is the call number plugin is not working for 3 digit number.

this.callNumber.callNumber(“108”, true)
.then(res => console.log(‘Launched dialer!’, res))
.catch(err => console.log(‘Error launching dialer’, err));

You dont need call number plugin to make calls, you can do this with html.

<a href="tel:+123">123</a>

Hello Hills,
Thank you so much for the suggestion. we have tried it But the problem is, it not making the call directly, it redirects to phone dialer with the “123” number typed. The user needs to press the call button to make the call. We want the call to be made directly. so considering this use case we cannot go by this html method. If you have any other solution pls post it.