Block constructor

Block({
  1. required DateTime time,
  2. int? height,
  3. required String hash,
  4. required int slot,
  5. required int epoch,
  6. required int epochSlot,
})

Implementation

Block(
    {required this.time,
    this.height,
    required this.hash,
    required this.slot,
    required this.epoch,
    required this.epochSlot});