isSame method

bool isSame(
  1. NIMConversation? conversation
)

Implementation

bool isSame(NIMConversation? conversation) {
  if (this == conversation) {
    return true;
  }
  return this.conversationId == conversation?.conversationId;
}