conversator 1.0.7 copy "conversator: ^1.0.7" to clipboard
conversator: ^1.0.7 copied to clipboard

With the conversator, you can send data/message across files. It works like web socket but it runs locally.

example/example.md

How to use ? #

void main(List<String> arguments) {
  conversator.listen('onMsg', ((String data) => print(data)));
  conversator.listen<String>('msg', ((data) => print(data)));

  conversator.speak('msg', 'Hello Bro');
  conversator.speak<String>('msg', 'Hey Bro');
}
2
likes
120
pub points
0%
popularity

Publisher

unverified uploader

With the conversator, you can send data/message across files. It works like web socket but it runs locally.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on conversator