isLocalWith method

bool isLocalWith(
  1. UserId? id
)

Indicates whether this ChatId has isLocal indicator and its userId equals the provided id.

Implementation

bool isLocalWith(UserId? id) => isLocal && userId == id;