isJoinNotify method
Implementation
bool isJoinNotify() {
if (body.type == BodyType.CUSTOM) {
if (ChatRoomUIKitEvent.userJoinEvent == (body as CustomBody).event) {
return true;
}
}
return false;
}
bool isJoinNotify() {
if (body.type == BodyType.CUSTOM) {
if (ChatRoomUIKitEvent.userJoinEvent == (body as CustomBody).event) {
return true;
}
}
return false;
}