send method
Sends a message to the WebSocket server.
Optionally persists the message using persistKey if configured in SocketConfig.
Implementation
void send(String message, {String persistKey = ''}) {
service.send(message, persistKey: persistKey);
}