setDefaultCallerName method
Set default caller name for no registered clients
This caller name will be shown for incomming calls
Implementation
Future<bool?> setDefaultCallerName(String callerName) {
return _channel.invokeMethod(
'defaultCaller', <String, dynamic>{"defaultCaller": callerName});
}