BlockTime constructor

const BlockTime({
  1. required int height,
  2. required int timestamp,
})

Implementation

const BlockTime({
  required this.height,
  required this.timestamp,
});