StreamInvocationMessage constructor

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

Implementation

StreamInvocationMessage({
  this.target,
  this.arguments,
  this.streamIds,
  super.headers,
  super.invocationId,
}) : super(type: MessageType.streamInvocation);