InvocationDetails constructor

InvocationDetails(
  1. int? caller,
  2. String? procedure,
  3. bool? receiveProgress, [
  4. String? pptScheme,
  5. String? pptSerializer,
  6. String? pptCipher,
  7. String? pptKeyId,
])

Implementation

InvocationDetails(this.caller, this.procedure, this.receiveProgress,
    [String? pptScheme,
    String? pptSerializer,
    String? pptCipher,
    String? pptKeyId]) {
  this.pptScheme = pptScheme;
  this.pptSerializer = pptSerializer;
  this.pptCipher = pptCipher;
  this.pptKeyId = pptKeyId;
}