flags property

int flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: closed,
    b01: publicVoters,
    b02: multipleChoice,
    b03: quiz,
    b04: closePeriod != null,
    b05: closeDate != null,
  );

  return v;
}