Seed constructor

Seed({
  1. String ip = "127.0.0.1",
  2. int port = 8080,
  3. String address = "",
  4. int ping = 0,
  5. bool online = false,
})

Implementation

Seed({
  this.ip = "127.0.0.1",
  this.port = 8080,
  this.address = "",
  this.ping = 0,
  this.online = false,
});