YieldOptions constructor

YieldOptions({
  1. bool? progress,
  2. String? pptScheme,
  3. String? pptSerializer,
  4. String? pptCipher,
  5. String? pptKeyId,
  6. Map<String, dynamic>? custom,
})

Implementation

YieldOptions({
  bool? progress,
  String? pptScheme,
  String? pptSerializer,
  String? pptCipher,
  String? pptKeyId,
  Map<String, dynamic>? custom,
}) {
  this.progress = progress ?? false;
  this.pptScheme = pptScheme;
  this.pptSerializer = pptSerializer;
  this.pptCipher = pptCipher;
  this.pptKeyId = pptKeyId;
  if (custom != null) {
    this.custom.addAll(custom);
  }
}