updateWhiteBoard method
Implementation
@override
void updateWhiteBoard(String roomId, String action, DrawModel draw) {
_socket?.emit(SocketEvent.updateWhiteBoardCSS, {
'roomId': roomId,
'action': action,
'paints': [draw.toMap()],
});
}