send method

void send(
  1. T data
)

Implementation

void send(T data) {
  for (var handler in _dataHandlers) {
    handler(data);
  }
}