registerClient method
Register clientId for background calls
Register the client name for incoming calls while calling using ids
Implementation
@override
Future<bool?> registerClient(String clientId, String clientName) {
return _channel.invokeMethod('registerClient', <String, dynamic>{"id": clientId, "name": clientName});
}