BlockInformation constructor

BlockInformation({
  1. required XCBAmount? baseFeePerEnergy,
  2. required List<TransactionInformation> transactions,
  3. required DateTime timestamp,
})

Implementation

BlockInformation({
  required this.baseFeePerEnergy,
  required this.transactions,
  required this.timestamp,
});