EpochInfo constructor

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

Implementation

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