PartSetHeader constructor

PartSetHeader({
  1. int? total,
  2. List<int>? hash,
})

Implementation

factory PartSetHeader({
  $core.int? total,
  $core.List<$core.int>? hash,
}) {
  final _result = create();
  if (total != null) {
    _result.total = total;
  }
  if (hash != null) {
    _result.hash = hash;
  }
  return _result;
}