InvocationMessage constructor

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

Implementation

InvocationMessage(
    {this.target,
    this.arguments,
    this.streamIds,
    MessageHeaders? headers,
    String? invocationId})
    : super(MessageType.invocation, headers, invocationId);