ContractCallDecodingInput constructor
Implementation
factory ContractCallDecodingInput({
$core.List<$core.int>? encoded,
$core.String? smartContractAbiJson,
}) {
final $result = create();
if (encoded != null) {
$result.encoded = encoded;
}
if (smartContractAbiJson != null) {
$result.smartContractAbiJson = smartContractAbiJson;
}
return $result;
}