ChainHeadNewBlock constructor

const ChainHeadNewBlock({
  1. required String blockHash,
  2. required String parentBlockHash,
  3. Map<String, dynamic>? newRuntime,
})

Implementation

const ChainHeadNewBlock({required this.blockHash, required this.parentBlockHash, this.newRuntime})
  : super(ChainHeadEventType.newBlock);