flags property

int get flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: viaGiveaway,
    b05: unclaimed,
    b01: boostPeer != null,
    b02: currency != null || amount != null,
    b03: cryptoCurrency != null || cryptoAmount != null,
    b04: message != null,
  );

  return v;
}