Group constructor

Group({
  1. String? displayName,
  2. String? filter,
  3. bool? isCluster,
  4. String? name,
  5. String? parentName,
})

Implementation

Group({
  this.displayName,
  this.filter,
  this.isCluster,
  this.name,
  this.parentName,
});