ValueOp constructor

ValueOp({
  1. List<int>? key,
  2. Proof? proof,
})

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;
}