once method
Listen to an event only once
Implementation
void once(String event, Function(dynamic) callback) => _socket.once(event, callback);
Listen to an event only once
void once(String event, Function(dynamic) callback) => _socket.once(event, callback);