Skip to content

Instantly share code, notes, and snippets.

@JesterXL
Created July 23, 2014 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JesterXL/cf647b8559be70903750 to your computer and use it in GitHub Desktop.
Save JesterXL/cf647b8559be70903750 to your computer and use it in GitHub Desktop.
No separate stream - works
List myList = new List();
StreamController controller = new StreamController();
controller.stream.listen((_)
{
print("data: $_");
});
controller.add("sup");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment