StructuredQuery_CollectionSelector constructor

StructuredQuery_CollectionSelector({
  1. String? collectionId,
  2. bool? allDescendants,
})

Implementation

factory StructuredQuery_CollectionSelector({
  $core.String? collectionId,
  $core.bool? allDescendants,
}) {
  final _result = create();
  if (collectionId != null) {
    _result.collectionId = collectionId;
  }
  if (allDescendants != null) {
    _result.allDescendants = allDescendants;
  }
  return _result;
}