Flutter SDK
Tags
Access semantic tags with the Flutter SDK.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Access semantic tags with the Flutter SDK.
list()Future<Page<Tag>> list({int? page, int? perPage})
get()Future<Tag> get(String slug)
iter()Stream<Tag> iter({int perPage = 20})
Tag| Field | Type | Description |
|---|---|---|
id | int | Internal ID |
slug | String | URL-safe identifier |
name | String | Display name |
description | String? | Description |
keywords | List<String> | Associated keywords |
color | String? | Hex color for display |
createdAt | String | ISO 8601 timestamp |
final page = await client.tags.list();
for (final t in page.data) {
print('${t.name} — ${t.slug}');
}
final tag = await client.tags.get('data-protection');
print('Keywords: ${tag.keywords.join(', ')}');
await for (final t in client.tags.iter()) {
print(t.name);
}
Was this page helpful?
