ResultDetails constructor

ResultDetails({
  1. bool? progress,
  2. String? pptScheme,
  3. String? pptSerializer,
  4. String? pptCipher,
  5. String? pptKeyId,
})

Implementation

ResultDetails(
    {bool? progress,
    String? pptScheme,
    String? pptSerializer,
    String? pptCipher,
    String? pptKeyId}) {
  this.progress = progress ?? false;
  this.pptScheme = pptScheme;
  this.pptSerializer = pptSerializer;
  this.pptCipher = pptCipher;
  this.pptKeyId = pptKeyId;
}