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.

Conversator #

Why ? #

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

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');
}

You can also use these in different files (speak in file 1, listen in file 2). #

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