VISIPInfoReceived typedef

VISIPInfoReceived = void Function(VICall call, String type, String content, Map<String, String>? headers)

Signature for callbacks reporting that INFO message is received.

Used in VICall.

call - VICall instance initiated the event

type - MIME type of INFO message

content - Body of INFO message

headers - Optional SIP headers

Implementation

typedef void VISIPInfoReceived(
  VICall call,
  String type,
  String content,
  Map<String, String>? headers,
);