Server constructor

const Server({
  1. String id = '',
  2. String name = '',
  3. int messages = 0,
})

Implementation

const Server({
  this.id = '',
  this.name = '',
  this.messages = 0,
});