BulkSetLimitsResponse constructor
BulkSetLimitsResponse({
- ObjectDetails? details,
- Iterable<
ObjectDetails> ? targetDetails,
Implementation
factory BulkSetLimitsResponse({
$1.ObjectDetails? details,
$core.Iterable<$1.ObjectDetails>? targetDetails,
}) {
final result = create();
if (details != null) result.details = details;
if (targetDetails != null) result.targetDetails.addAll(targetDetails);
return result;
}