call method
Make an outgoing call.
-param {String} target
-param {Object} options
-throws {TypeError}
Implementation
RTCSession call(String target, Map<String, dynamic> options) {
logger.debug('call()');
RTCSession session = RTCSession(this);
session.connect(target, options);
return session;
}