Group constructor

Group({
  1. String? createTime,
  2. String? description,
  3. String? displayName,
  4. String? migrationTargetType,
  5. String? name,
  6. String? updateTime,
})

Implementation

Group({
  this.createTime,
  this.description,
  this.displayName,
  this.migrationTargetType,
  this.name,
  this.updateTime,
});