Scope constructor

Scope({
  1. String? createTime,
  2. String? deleteTime,
  3. Map<String, String>? labels,
  4. String? name,
  5. Map<String, String>? namespaceLabels,
  6. ScopeLifecycleState? state,
  7. String? uid,
  8. String? updateTime,
})

Implementation

Scope({
  this.createTime,
  this.deleteTime,
  this.labels,
  this.name,
  this.namespaceLabels,
  this.state,
  this.uid,
  this.updateTime,
});