Toleration constructor

const Toleration({
  1. String? effect,
  2. String? key,
  3. String? operator,
  4. int? tolerationSeconds,
  5. String? value,
})

The main constructor.

Implementation

const Toleration({
  this.effect,
  this.key,
  this.operator,
  this.tolerationSeconds,
  this.value,
});