HashInfo constructor

HashInfo({
  1. required String txnHash,
  2. required TxStatusLabel status,
  3. required TransactionType type,
  4. required int txnTime,
  5. required dynamic blockHash,
})

Implementation

HashInfo({
  required this.txnHash,
  required this.status,
  required this.type,
  required this.txnTime,
  required this.blockHash,
});