deliver method

void deliver(
  1. String body
)

Pushes a message body to whatever is listening.

Implementation

void deliver(String body) => _messages.add(body);