I'm using flutter_webrtc
and sip_ua
packages to implement VoIP calls. The flow of registration on the SIP server is as follows,
When the user opens the app, the client(App) is registered on the server with the required credentials.
What do I want to achieve?
I want the client should be registered, even when the app is in the background
. The purpose of this functionality is to enable the client(App) to receive Calls, even when the app is in the background.
I want to know if such functionality is possible, and how!