ClusterNode constructor

ClusterNode({
  1. String? nodeRole,
  2. String? privateIPAddress,
  3. String? publicIPAddress,
})

Implementation

ClusterNode({
  this.nodeRole,
  this.privateIPAddress,
  this.publicIPAddress,
});