InvocationDetails constructor

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

Implementation

InvocationDetails(
  this.caller,
  this.procedure,
  this.receiveProgress, [
  String? pptScheme,
  String? pptSerializer,
  String? pptCipher,
  String? pptKeyId,
  Map<String, dynamic>? custom,
]) {
  this.pptScheme = pptScheme;
  this.pptSerializer = pptSerializer;
  this.pptCipher = pptCipher;
  this.pptKeyId = pptKeyId;
  if (custom != null) {
    this.custom.addAll(custom);
  }
}