CallOptions constructor

CallOptions({
  1. bool? receiveProgress,
  2. int? timeout,
  3. bool? discloseMe,
  4. String? pptScheme,
  5. String? pptSerializer,
  6. String? pptCipher,
  7. String? pptKeyId,
})

Implementation

CallOptions(
    {this.receiveProgress,
    this.timeout,
    this.discloseMe,
    String? pptScheme,
    String? pptSerializer,
    String? pptCipher,
    String? pptKeyId}) {
  this.pptScheme = pptScheme;
  this.pptSerializer = pptSerializer;
  this.pptCipher = pptCipher;
  this.pptKeyId = pptKeyId;
}