flags property

int get flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: writeAllowed,
    b07: compact,
    b08: fullscreen,
    b01: startParam != null,
    b02: themeParams != null,
  );

  return v;
}