room method

SocketEmitter room(
  1. dynamic id
)

set room to sent message

emitter.room('ABC');

Implementation

SocketEmitter room(dynamic id) {
  roomId = id;
  return this;
}