Flutter SDK
Recitals
Access regulatory recitals (preamble) 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 regulatory recitals (preamble) with the Flutter SDK.
list()Future<Page<Recital>> list(String frameworkSlug, {int? page, int? perPage})
get()Future<Recital> get(String frameworkSlug, String recitalNumber)
iter()Stream<Recital> iter(String frameworkSlug, {int perPage = 20})
Recital| Field | Type | Description |
|---|---|---|
id | int | Internal ID |
frameworkSlug | String | Parent framework |
number | String | Recital number |
title | String? | Optional title |
text | String | Full text content |
position | int | Ordering position |
final page = await client.recitals.list('gdpr');
print('${page.meta.total} GDPR recitals');
final r1 = await client.recitals.get('gdpr', '1');
print(r1.text);
await for (final r in client.recitals.iter('nis2')) {
print('Recital ${r.number}: ${r.text.substring(0, 80)}...');
}
Was this page helpful?
