description property

String get description

Implementation

String get description {
  switch (type) {
    case GenerativeType.aiGenerated:
      return 'This content was generated with an AI tool.';
    case GenerativeType.compositeWithAi:
      return 'This content combines multiple pieces of content. '
          'At least one was generated with an AI tool.';
    case GenerativeType.legacy:
      return 'This content may include AI-generated elements.';
  }
}