Content_PhotoContent constructor

Content_PhotoContent({
  1. Iterable<Photo>? photos,
})

Implementation

factory Content_PhotoContent({
  $core.Iterable<Photo>? photos,
}) {
  final _result = create();
  if (photos != null) {
    _result.photos.addAll(photos);
  }
  return _result;
}