Namespace constructor

Namespace({
  1. Map<String, String>? labels,
  2. String? name,
  3. String? uid,
})

Implementation

Namespace({
  this.labels,
  this.name,
  this.uid,
});