UserModel constructor
UserModel({})
Implementation
UserModel({
required this.roomId,
required this.nickName,
String? clientKey,
String? grade,
this.userInfo,
}) {
this.clientKey = clientKey ?? Util.getRandomString(10);
this.grade = grade ?? 'user';
}