value property

int value

Byte values of the flags

Implementation

int get value {
  switch (this) {
    case ApplicationFlag.gatewayPresence:
      return 1 << 12;
    case ApplicationFlag.gatweayPresenceLimited:
      return 1 << 13;
    case ApplicationFlag.gatewayGuildMembers:
      return 1 << 14;
    case ApplicationFlag.gatewayGuildMembersLimited:
      return 1 << 15;
    case ApplicationFlag.verificationPendingGuildLimit:
      return 1 << 16;
    case ApplicationFlag.embedded:
      return 1 << 17;
    case ApplicationFlag.gatewayMessageContent:
      return 1 << 18;
    case ApplicationFlag.gatewayMessageContentLimited:
      return 1 << 19;
  }
}