Object constructor

Object({
  1. List<Container>? containers,
  2. String? group,
  3. String? kind,
  4. String? name,
  5. String? ns,
})

Implementation

Object({
  this.containers,
  this.group,
  this.kind,
  this.name,
  this.ns,
});