AiGenPageExample constructor

AiGenPageExample({
  1. Iterable<AiGenPageExample_Category>? categories,
  2. String? nodeKey,
  3. 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;
}