---
id: stream
title: "stream()"
slug: stream
custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/dart.yml
---
import Tabs from '@theme/Tabs';
import TabsPanel from '@theme/TabsPanel';
Notifies of data at the queried table.
```dart
supabase
.from('countries')
.stream()
.execute();
```
## Notes
- `stream()` will emit the initial data as well as any further change on the database as `Stream` of `List