isSelf method

bool isSelf(
  1. String? userId
)

Implementation

bool isSelf(String? userId) {
  return userId != null && roomContext.isMySelf(userId);
}