ProtoManifest constructor
Implementation
factory ProtoManifest({
$core.List<$core.int>? cid,
$fixnum.Int64? height,
$core.List<$core.int>? root,
}) {
final _result = create();
if (cid != null) {
_result.cid = cid;
}
if (height != null) {
_result.height = height;
}
if (root != null) {
_result.root = root;
}
return _result;
}