EpochInfo constructor

const EpochInfo({
  1. required u64 absoluteSlot,
  2. required u64 blockHeight,
  3. required u64 epoch,
  4. required u64 slotIndex,
  5. required u64 slotsInEpoch,
  6. required u64? transactionCount,
})

Information about an epoch.

Implementation

const EpochInfo({
  required this.absoluteSlot,
  required this.blockHeight,
  required this.epoch,
  required this.slotIndex,
  required this.slotsInEpoch,
  required this.transactionCount,
});