flags property

int flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: muted,
    b01: left,
    b02: canSelfUnmute,
    b04: justJoined,
    b05: versioned,
    b08: min,
    b09: mutedByYou,
    b10: volumeByAdmin,
    b12: self,
    b15: videoJoined,
    b03: activeDate != null,
    b07: volume != null,
    b11: about != null,
    b13: raiseHandRating != null,
    b06: video != null,
    b14: presentation != null,
  );

  return v;
}