Models
Category: Web
Source: models.dart
Classes
WebSearchResult
Constructor
dart
const WebSearchResult({
required this.title,
required this.url,
required this.snippet,
this.publishedAt,
})Properties
| Property | Type | Description |
|---|---|---|
title | String | |
url | Uri | |
snippet | String | |
publishedAt | DateTime? |
Methods
String toText()
WebSearchResponse
Constructor
dart
const WebSearchResponse({
required this.provider,
required this.query,
required this.results,
this.aiSummary,
})Properties
| Property | Type | Description |
|---|---|---|
provider | String | |
query | String | |
results | List<WebSearchResult> | |
aiSummary | String? |