sstream 1.0.0 copy "sstream: ^1.0.0" to clipboard
sstream: ^1.0.0 copied to clipboard

outdated

Simple Stream

example/sstream_example.dart

import 'package:sstream/sstream.dart';

void main() {
  SStream<int> count = SStream(0);
  count.stream.listen((event) {
    print(event);
  });
  count.add(1);
  count.add(100);
  print(count.value);
}
6
likes
0
points
57
downloads

Publisher

verified publisherotoritech.com

Weekly Downloads

Simple Stream

License

unknown (license)

More

Packages that depend on sstream