BatchEnableServicesRequest constructor

BatchEnableServicesRequest({
  1. String? parent,
  2. Iterable<String>? serviceIds,
})

Implementation

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