ServerGroup constructor

ServerGroup({
  1. String? name,
  2. String? serverGroupId,
  3. List<Server>? serverList,
})

Implementation

ServerGroup({
  this.name,
  this.serverGroupId,
  this.serverList,
});