LazyInvocationPayload constructor

LazyInvocationPayload({
  1. required int requestId,
  2. required int registrationId,
  3. required bool receiveProgress,
  4. required InvocationPayloadResponder respondWith,
  5. required bool isResponseClosed(),
  6. required LazyMessagePayload payload,
  7. bool progress = false,
  8. int? timeout,
  9. int? caller,
  10. String? procedure,
  11. String? pptScheme,
  12. String? pptSerializer,
  13. String? pptCipher,
  14. String? pptKeyId,
  15. Map<String, dynamic>? customDetails,
})

Implementation

LazyInvocationPayload({
  required this.requestId,
  required this.registrationId,
  required this.receiveProgress,
  required this.respondWith,
  required this.isResponseClosed,
  required this.payload,
  this.progress = false,
  this.timeout,
  this.caller,
  this.procedure,
  this.pptScheme,
  this.pptSerializer,
  this.pptCipher,
  this.pptKeyId,
  this.customDetails,
});