ValidatorParams constructor

ValidatorParams({
  1. Iterable<String>? pubKeyTypes,
})

Implementation

factory ValidatorParams({
  $core.Iterable<$core.String>? pubKeyTypes,
}) {
  final _result = create();
  if (pubKeyTypes != null) {
    _result.pubKeyTypes.addAll(pubKeyTypes);
  }
  return _result;
}