PublishOptions constructor

PublishOptions({
  1. bool? acknowledge,
  2. List<int>? exclude,
  3. List<String>? excludeAuthId,
  4. List<String>? excludeAuthRole,
  5. List<int>? eligible,
  6. List<String>? eligibleAuthId,
  7. List<String>? eligibleAuthRole,
  8. bool? excludeMe,
  9. bool? discloseMe,
  10. bool? retain,
  11. String? pptScheme,
  12. String? pptSerializer,
  13. String? pptCipher,
  14. String? pptKeyId,
})

Implementation

PublishOptions(
    {this.acknowledge,
    this.exclude,
    this.excludeAuthId,
    this.excludeAuthRole,
    this.eligible,
    this.eligibleAuthId,
    this.eligibleAuthRole,
    this.excludeMe,
    this.discloseMe,
    this.retain,
    String? pptScheme,
    String? pptSerializer,
    String? pptCipher,
    String? pptKeyId}) {
  this.pptScheme = pptScheme;
  this.pptSerializer = pptSerializer;
  this.pptCipher = pptCipher;
  this.pptKeyId = pptKeyId;
}