NodeStatus constructor

NodeStatus({
  1. required int catchupTime,
  2. required int lastRound,
  3. required String lastVersion,
  4. required String nextVersion,
  5. required int nextVersionRound,
  6. required bool nextVersionSupported,
  7. required bool stoppedAtUnsupportedRound,
  8. required int timeSinceLastRound,
  9. String? catchpoint,
  10. int? catchpointAcquiredBlocks,
  11. int? catchpointProcessedAccounts,
  12. int? catchpointTotalAccounts,
  13. int? catchpointTotalBlocks,
  14. int? catchpointVerifiedAccounts,
  15. String? lastCatchpoint,
})

Implementation

NodeStatus({
  required this.catchupTime,
  required this.lastRound,
  required this.lastVersion,
  required this.nextVersion,
  required this.nextVersionRound,
  required this.nextVersionSupported,
  required this.stoppedAtUnsupportedRound,
  required this.timeSinceLastRound,
  this.catchpoint,
  this.catchpointAcquiredBlocks,
  this.catchpointProcessedAccounts,
  this.catchpointTotalAccounts,
  this.catchpointTotalBlocks,
  this.catchpointVerifiedAccounts,
  this.lastCatchpoint,
});