isJoiner method

bool isJoiner(
  1. String side
)

Can this user subscribe on topic?

Implementation

bool isJoiner(String side) {
  return AccessMode.checkFlag(this, side, JOIN);
}