Node constructor

Node({
  1. bool? authorized,
  2. bool? available,
  3. double? averageAvailability,
  4. String? firstPublicKey,
  5. String? geoPatch,
  6. String? ip,
  7. String? lastPublicKey,
  8. String? networkPatch,
  9. int? port,
  10. String? rewardAddress,
  11. int? authorizationDate,
  12. int? enrollmentDate,
})

Implementation

Node(
    {this.authorized,
    this.available,
    this.averageAvailability,
    this.firstPublicKey,
    this.geoPatch,
    this.ip,
    this.lastPublicKey,
    this.networkPatch,
    this.port,
    this.rewardAddress,
    this.authorizationDate,
    this.enrollmentDate,});