Group constructor

Group({
  1. String? createTime,
  2. String? description,
  3. Map<String, String>? labels,
  4. String? name,
  5. String? state,
  6. String? uid,
  7. String? updateTime,
})

Implementation

Group({
  this.createTime,
  this.description,
  this.labels,
  this.name,
  this.state,
  this.uid,
  this.updateTime,
});