getSessionSIPAddress method
Get the session SIP address.
Implementation
@override
Future<String> getSessionSIPAddress() async {
return await methodChannel
.invokeMethod<String>('getSessionSIPAddress')
.then<String>((String? value) => value ?? "");
}