BlockInformation constructor

BlockInformation({
  1. required EtherAmount? baseFeePerGas,
  2. required DateTime timestamp,
  3. required BigInt number,
})

Implementation

BlockInformation({
  required this.baseFeePerGas,
  required this.timestamp,
  required this.number,
});