Topic constructor

Topic({
  1. String? name,
  2. PartitionConfig? partitionConfig,
  3. ReservationConfig? reservationConfig,
  4. RetentionConfig? retentionConfig,
})

Implementation

Topic({
  this.name,
  this.partitionConfig,
  this.reservationConfig,
  this.retentionConfig,
});