EpochInfo constructor

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

Implementation

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