Invocation constructor

Invocation(
  1. int requestId,
  2. int registrationId,
  3. InvocationDetails details, {
  4. List? arguments,
  5. Map<String, dynamic>? argumentsKeywords,
})

Implementation

Invocation(
  this.requestId,
  this.registrationId,
  this.details, {
  List<dynamic>? arguments,
  Map<String, dynamic>? argumentsKeywords,
}) {
  id = MessageTypes.codeInvocation;
  this.arguments = arguments;
  this.argumentsKeywords = argumentsKeywords;
}