SearchIPForbiddenResp constructor

SearchIPForbiddenResp({
  1. int? total,
  2. Iterable<IPForbidden>? forbiddens,
})

Implementation

factory SearchIPForbiddenResp({
  $core.int? total,
  $core.Iterable<IPForbidden>? forbiddens,
}) {
  final result = create();
  if (total != null) result.total = total;
  if (forbiddens != null) result.forbiddens.addAll(forbiddens);
  return result;
}