isJoinNotify method

bool isJoinNotify()

Implementation

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