ValueOp constructor
Implementation
factory ValueOp({
$core.List<$core.int>? key,
Proof? proof,
}) {
final _result = create();
if (key != null) {
_result.key = key;
}
if (proof != null) {
_result.proof = proof;
}
return _result;
}