Proof_Not constructor
Implementation
factory Proof_Not({
$4.TxBind? transactionBind,
Proof? proof,
}) {
final _result = create();
if (transactionBind != null) {
_result.transactionBind = transactionBind;
}
if (proof != null) {
_result.proof = proof;
}
return _result;
}