copyWith method
- ContractFunctionWithValues? decodedInput,
Implementation
EVMTransaction copyWith({ContractFunctionWithValues? decodedInput}) {
return EVMTransaction(
hash: hash,
block: block,
confirmations: confirmations,
timeMilli: timeMilli,
amount: amount,
fee: fee,
gasPrice: gasPrice,
gas: gas,
gasUsed: gasUsed,
sender: sender,
recipient: recipient,
transferMethod: transferMethod,
status: status,
input: input,
token: token,
decodedInput: decodedInput ?? this.decodedInput,
);
}