Node constructor

const 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? enrollmentDate,
  12. int? authorizationDate,
})

Implementation

const factory Node({
  bool? authorized,
  bool? available,
  double? averageAvailability,
  String? firstPublicKey,
  String? geoPatch,
  String? ip,
  String? lastPublicKey,
  String? networkPatch,
  int? port,
  String? rewardAddress,
  int? enrollmentDate,
  int? authorizationDate,
}) = _Node;