flags property

int flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b01: title != null,
    b02: description != null,
    b03: url != null,
    b04: thumb != null,
    b05: content != null,
  );

  return v;
}