Subscription constructor

Subscription({
  1. int? ackDeadlineSeconds,
  2. BigQueryConfig? bigqueryConfig,
  3. CloudStorageConfig? cloudStorageConfig,
  4. DeadLetterPolicy? deadLetterPolicy,
  5. bool? detached,
  6. bool? enableExactlyOnceDelivery,
  7. bool? enableMessageOrdering,
  8. ExpirationPolicy? expirationPolicy,
  9. String? filter,
  10. Map<String, String>? labels,
  11. String? messageRetentionDuration,
  12. String? name,
  13. PushConfig? pushConfig,
  14. bool? retainAckedMessages,
  15. RetryPolicy? retryPolicy,
  16. String? state,
  17. String? topic,
  18. String? topicMessageRetentionDuration,
})

Implementation

Subscription({
  this.ackDeadlineSeconds,
  this.bigqueryConfig,
  this.cloudStorageConfig,
  this.deadLetterPolicy,
  this.detached,
  this.enableExactlyOnceDelivery,
  this.enableMessageOrdering,
  this.expirationPolicy,
  this.filter,
  this.labels,
  this.messageRetentionDuration,
  this.name,
  this.pushConfig,
  this.retainAckedMessages,
  this.retryPolicy,
  this.state,
  this.topic,
  this.topicMessageRetentionDuration,
});