flags property

int get flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: reportSpam,
    b01: addContact,
    b02: blockContact,
    b03: shareContact,
    b04: needContactsException,
    b05: reportGeo,
    b07: autoarchived,
    b08: inviteMembers,
    b10: requestChatBroadcast,
    b11: businessBotPaused,
    b12: businessBotCanReply,
    b06: geoDistance != null,
    b09: requestChatTitle != null || requestChatDate != null,
    b13: businessBotId != null || businessBotManageUrl != null,
    b14: chargePaidMessageStars != null,
    b15: registrationMonth != null,
    b16: phoneCountry != null,
    b17: nameChangeDate != null,
    b18: photoChangeDate != null,
  );

  return v;
}