ProofOp constructor
Implementation
factory ProofOp({
$core.String? type,
$core.List<$core.int>? key,
$core.List<$core.int>? data,
}) {
final _result = create();
if (type != null) {
_result.type = type;
}
if (key != null) {
_result.key = key;
}
if (data != null) {
_result.data = data;
}
return _result;
}