ProtoManifest constructor

ProtoManifest({
  1. List<int>? cid,
  2. Int64? height,
  3. List<int>? root,
})

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