ProtoWeakCertificates constructor

ProtoWeakCertificates({
  1. Iterable<List<int>>? hashes,
})

Implementation

factory ProtoWeakCertificates({
  $core.Iterable<$core.List<$core.int>>? hashes,
}) {
  final _result = create();
  if (hashes != null) {
    _result.hashes.addAll(hashes);
  }
  return _result;
}