MmClusterInfo constructor

MmClusterInfo({
  1. String? id,
  2. String? version,
  3. String? configHash,
  4. String? internodeUrl,
  5. String? hostname,
  6. int? lastPing,
  7. bool? isAlive,
})

Returns a new MmClusterInfo instance.

Implementation

MmClusterInfo({
  this.id,
  this.version,
  this.configHash,
  this.internodeUrl,
  this.hostname,
  this.lastPing,
  this.isAlive,
});