ADABlockResponse constructor

ADABlockResponse({
  1. required int time,
  2. required String hash,
  3. required String slotLeader,
  4. required int size,
  5. required int txCount,
  6. required int confirmations,
  7. int? height,
  8. int? slot,
  9. int? epoch,
  10. int? epochSlot,
  11. String? output,
  12. String? fees,
  13. String? blockVrf,
  14. String? opCert,
  15. String? opCertCounter,
  16. String? previousBlock,
  17. String? nextBlock,
})

Implementation

ADABlockResponse({
  required this.time,
  required this.hash,
  required this.slotLeader,
  required this.size,
  required this.txCount,
  required this.confirmations,
  this.height,
  this.slot,
  this.epoch,
  this.epochSlot,
  this.output,
  this.fees,
  this.blockVrf,
  this.opCert,
  this.opCertCounter,
  this.previousBlock,
  this.nextBlock,
});