AiGenPageExample constructor
AiGenPageExample({
- Iterable<
AiGenPageExample_Category> ? categories, - String? nodeKey,
- String? serializedProjectProto,
Implementation
factory AiGenPageExample({
$core.Iterable<AiGenPageExample_Category>? categories,
$core.String? nodeKey,
$core.String? serializedProjectProto,
}) {
final result = create();
if (categories != null) result.categories.addAll(categories);
if (nodeKey != null) result.nodeKey = nodeKey;
if (serializedProjectProto != null)
result.serializedProjectProto = serializedProjectProto;
return result;
}