send method

void send(
  1. String command
)

Implementation

void send(String command) {
  if (_wsReady()) {
    _sok.send(command);
  }
}