YieldOptions constructor
YieldOptions({})
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);
}
}