ServerKeyRestrictions constructor

ServerKeyRestrictions({
  1. Iterable<String>? allowedIps,
})

Implementation

factory ServerKeyRestrictions({
  $core.Iterable<$core.String>? allowedIps,
}) {
  final result = create();
  if (allowedIps != null) result.allowedIps.addAll(allowedIps);
  return result;
}