ADABlockResponse constructor
      
      ADABlockResponse({ 
    
    
- required int time,
- required String hash,
- required String slotLeader,
- required int size,
- required int txCount,
- required int confirmations,
- int? height,
- int? slot,
- int? epoch,
- int? epochSlot,
- String? output,
- String? fees,
- String? blockVrf,
- String? opCert,
- String? opCertCounter,
- String? previousBlock,
- 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,
});