InvocationMessage constructor

InvocationMessage(
  1. String target,
  2. List arguments, {
  3. Map<String, String>? headers,
  4. String? invocationId,
  5. List<String>? streamIds,
})

Implementation

InvocationMessage(this.target, this.arguments,
    {this.headers, this.invocationId, this.streamIds})
    : type = MessageType.invocation;