Node constructor

Node({
  1. required Seed seed,
  2. int connections = 0,
  3. int lastblock = 0,
  4. int pendings = 0,
  5. int delta = 0,
  6. String branch = "",
  7. String version = "",
  8. String lastblockhash = "",
  9. String headershash = "",
  10. String sumaryhash = "",
  11. int utcTime = 0,
})

Implementation

Node({
  required this.seed,
  this.connections = 0,
  this.lastblock = 0,
  this.pendings = 0,
  this.delta = 0,
  this.branch = "",
  this.version = "",
  this.lastblockhash = "",
  this.headershash = "",
  this.sumaryhash = "",
  this.utcTime = 0,
});