BulkSetLimitsResponse constructor

BulkSetLimitsResponse({
  1. ObjectDetails? details,
  2. 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;
}