BlockMetadata constructor

BlockMetadata({
  1. required int height,
  2. required String hash,
  3. required int timestamp,
})

Implementation

BlockMetadata({
  required this.height,
  required this.hash,
  required this.timestamp,
});