WalletTransactionEntity constructor

const WalletTransactionEntity({
  1. required String blockNumber,
  2. required String timeStamp,
  3. required String hash,
  4. required String nonce,
  5. required String blockHash,
  6. required String transactionIndex,
  7. required String from,
  8. required String to,
  9. required String value,
  10. required String gas,
  11. required String gasPrice,
  12. required String isError,
  13. required String txreceiptStatus,
})

Implementation

const WalletTransactionEntity(
    {required this.blockNumber,
    required this.timeStamp,
    required this.hash,
    required this.nonce,
    required this.blockHash,
    required this.transactionIndex,
    required this.from,
    required this.to,
    required this.value,
    required this.gas,
    required this.gasPrice,
    required this.isError,
    required this.txreceiptStatus});