Proof_Not constructor

Proof_Not({
  1. TxBind? transactionBind,
  2. Proof? proof,
})

Implementation

factory Proof_Not({
  $3.TxBind? transactionBind,
  Proof? proof,
}) {
  final $result = create();
  if (transactionBind != null) {
    $result.transactionBind = transactionBind;
  }
  if (proof != null) {
    $result.proof = proof;
  }
  return $result;
}