BlockDetails constructor

BlockDetails({
  1. required String blockHash,
  2. required int epoch,
  3. required int timestamp,
  4. required int drWeight,
  5. required int vtWeight,
  6. required int blockWeight,
  7. required bool confirmed,
  8. required bool reverted,
  9. required MintInfo mintInfo,
})

Implementation

BlockDetails({
  required this.blockHash,
  required this.epoch,
  required this.timestamp,
  required this.drWeight,
  required this.vtWeight,
  required this.blockWeight,
  required this.confirmed,
  required this.reverted,
  required this.mintInfo,
});