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

outdated

A simple command-line application.

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) {
  conversation.listen('onMsg', ((String data) => print(data)));
  conversation.listen<String>('msg', ((data) => print(data)));

  conversation.speak('msg', 'Hello Bro');
  conversation.speak<String>('msg', 'Hey Bro');
}

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

2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A simple command-line application.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on conversator