send method

void send(
  1. dynamic data
)

Implementation

void send(dynamic data) {
  if (_dc != null && isOpen) {
    _dc!.send(data);
  }
}