isSupport property

bool get isSupport

Indicates whether this Chat is a support chat.

Implementation

bool get isSupport {
  if (id.isLocal) {
    return Config.isSupport(id.userId);
  }

  return isDialog && members.any((e) => Config.isSupport(e.user.id));
}