MintInfo constructor

MintInfo({
  1. required String miner,
  2. required String blockHash,
  3. required List<ValueTransferOutput> outputs,
  4. required int txnEpoch,
  5. required String txnHash,
  6. required int txnTime,
  7. required String type,
})

Implementation

MintInfo({
  required this.miner,
  required this.blockHash,
  required this.outputs,
  required this.txnEpoch,
  required this.txnHash,
  required this.txnTime,
  required this.type,
});