CompressedNonExistenceProof constructor
CompressedNonExistenceProof({
- List<
int> ? key, - CompressedExistenceProof? left,
- CompressedExistenceProof? right,
Implementation
factory CompressedNonExistenceProof({
$core.List<$core.int>? key,
CompressedExistenceProof? left,
CompressedExistenceProof? right,
}) {
final _result = create();
if (key != null) {
_result.key = key;
}
if (left != null) {
_result.left = left;
}
if (right != null) {
_result.right = right;
}
return _result;
}