sendRequest method

OutgoingRequest sendRequest(
  1. SipMethod method, [
  2. Map<String, dynamic>? options
])

Send a generic in-dialog Request

Implementation

OutgoingRequest sendRequest(SipMethod method,
    [Map<String, dynamic>? options]) {
  logger.debug('sendRequest()');

  return _dialog!.sendRequest(method, options);
}