NextInvocation constructor

const NextInvocation({
  1. required String requestId,
  2. String? deadlineMs,
  3. String? traceId,
  4. String? clientContext,
  5. String? cognitoIdentity,
  6. String? invokedFunctionArn,
  7. required Map<String, dynamic> response,
})

Implementation

const NextInvocation({
  required this.requestId,
  this.deadlineMs,
  this.traceId,
  this.clientContext,
  this.cognitoIdentity,
  this.invokedFunctionArn,
  required this.response,
});