SearchIPForbiddenResp constructor
SearchIPForbiddenResp({
- int? total,
- 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;
}