Pod constructor

Pod({
  1. List<Container>? containers,
  2. List<Label>? labels,
  3. String? name,
  4. String? ns,
})

Implementation

Pod({
  this.containers,
  this.labels,
  this.name,
  this.ns,
});