flags property

int get flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: (showPreviews != null),
    b01: (silent != null),
    b02: muteUntil != null,
    b03: iosSound != null,
    b04: androidSound != null,
    b05: otherSound != null,
    b06: (storiesMuted != null),
    b07: (storiesHideSender != null),
    b08: storiesIosSound != null,
    b09: storiesAndroidSound != null,
    b10: storiesOtherSound != null,
  );

  return v;
}