Node constructor

Node({
  1. String? customCoreCount,
  2. String? fqdn,
  3. String? internalIp,
  4. String? name,
  5. String? nodeTypeId,
  6. String? state,
  7. String? version,
})

Implementation

Node({
  this.customCoreCount,
  this.fqdn,
  this.internalIp,
  this.name,
  this.nodeTypeId,
  this.state,
  this.version,
});