Node constructor

Node({
  1. String? id,
  2. String? ip,
  3. String? state,
  4. String? zoneId,
})

Implementation

Node({
  this.id,
  this.ip,
  this.state,
  this.zoneId,
});