flags property

int flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b13: hasLargeMedia,
    b00: type != null,
    b01: siteName != null,
    b02: title != null,
    b03: description != null,
    b04: photo != null,
    b05: embedUrl != null || embedType != null,
    b06: embedWidth != null || embedHeight != null,
    b07: duration != null,
    b08: author != null,
    b09: document != null,
    b10: cachedPage != null,
    b12: attributes != null,
  );

  return v;
}