InvocationResponse constructor

InvocationResponse({
  1. String? executedVersion,
  2. String? functionError,
  3. String? logResult,
  4. Uint8List? payload,
  5. int? statusCode,
})

Implementation

InvocationResponse({
  this.executedVersion,
  this.functionError,
  this.logResult,
  this.payload,
  this.statusCode,
});