flags property

int flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: creator,
    b02: left,
    b05: broadcast,
    b07: verified,
    b08: megagroup,
    b09: restricted || restrictionReason != null,
    b11: signatures,
    b12: min,
    b19: scam,
    b20: hasLink,
    b21: hasGeo,
    b22: slowmodeEnabled,
    b23: callActive,
    b24: callNotEmpty,
    b25: fake,
    b26: gigagroup,
    b27: noforwards,
    b28: joinToSend,
    b29: joinRequest,
    b30: forum,
    b13: accessHash != null,
    b06: username != null,
    b14: adminRights != null,
    b15: bannedRights != null,
    b18: defaultBannedRights != null,
    b17: participantsCount != null,
  );

  return v;
}