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