ApplicationFlags class

Flags for an Application.

Inheritance
Available Extensions

Constructors

ApplicationFlags(int value)
Create a new ApplicationFlags.

Properties

first Flag<ApplicationFlags>
The first element.
no setterinherited
hasApplicationCommandBadge bool
Whether this application has the applicationCommandBadge flag set.
no setter
hasGatewayGuildMembers bool
Whether this application has the gatewayGuildMembers flag set.
no setter
hasGatewayGuildMembersLimited bool
Whether this application has the gatewayGuildMembersLimited flag set.
no setter
hasGatewayMessageContent bool
Whether this application has the gatewayMessageContent flag set.
no setter
hasGatewayMessageContentLimited bool
Whether this application has the gatewayMessageContentLimited flag set.
no setter
hasGatewayPresence bool
Whether this application has the gatewayPresence flag set.
no setter
hasGatewayPresenceLimited bool
Whether this application has the gatewayPresenceLimited flag set.
no setter
hashCode int
The hash code for this object.
no setterinherited
isEmbedded bool
Whether this application has the embedded flag set.
no setter
isEmpty bool
Whether this collection has no elements.
no setterinherited
isNotEmpty bool
Whether this collection has at least one element.
no setterinherited
isVerificationPendingGuildLimit bool
Whether this application has the verificationPendingGuildLimit flag set.
no setter
iterator Iterator<Flag<ApplicationFlags>>
A new Iterator that allows iterating the elements of this Iterable.
no setterinherited
last Flag<ApplicationFlags>
The last element.
no setterinherited
length int
The number of elements in this.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
single Flag<ApplicationFlags>
Checks that this iterable has only one element, and returns that element.
no setterinherited
usesApplicationAutoModerationRuleCreateBadge bool
Whether this application has the applicationAutoModerationRuleCreateBadge flag set.
no setter
value int
The integer value encoding the flags as a bitfield.
finalinherited

Methods

any(bool test(Flag<ApplicationFlags> element)) bool
Checks whether any element of this iterable satisfies test.
inherited
cast<R>() Iterable<R>
A view of this iterable as an iterable of R instances.
inherited
contains(Object? element) bool
Whether the collection contains an element equal to element.
inherited
defaultToString() String
Same as toString, but only called when dart:mirrors is not available.
inherited
elementAt(int index) Flag<ApplicationFlags>
Returns the indexth element.
inherited
every(bool test(Flag<ApplicationFlags> element)) bool
Checks whether every element of this iterable satisfies test.
inherited
expand<T>(Iterable<T> toElements(Flag<ApplicationFlags> element)) Iterable<T>
Expands each element of this Iterable into zero or more elements.
inherited
firstWhere(bool test(Flag<ApplicationFlags> element), {Flag<ApplicationFlags> orElse()?}) Flag<ApplicationFlags>
The first element that satisfies the given predicate test.
inherited
fold<T>(T initialValue, T combine(T previousValue, Flag<ApplicationFlags> element)) → T
Reduces a collection to a single value by iteratively combining each element of the collection with an existing value
inherited
followedBy(Iterable<Flag<ApplicationFlags>> other) Iterable<Flag<ApplicationFlags>>
Creates the lazy concatenation of this iterable and other.
inherited
forEach(void action(Flag<ApplicationFlags> element)) → void
Invokes action on each element of this iterable in iteration order.
inherited
has(Flag<ApplicationFlags> flag) bool
Returns true if this Flags has the flag enabled, false otherwise.
inherited
join([String separator = ""]) String
Converts each element to a String and concatenates the strings.
inherited
lastWhere(bool test(Flag<ApplicationFlags> element), {Flag<ApplicationFlags> orElse()?}) Flag<ApplicationFlags>
The last element that satisfies the given predicate test.
inherited
map<T>(T toElement(Flag<ApplicationFlags> e)) Iterable<T>
The current elements of this iterable modified by toElement.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reduce(Flag<ApplicationFlags> combine(Flag<ApplicationFlags> value, Flag<ApplicationFlags> element)) Flag<ApplicationFlags>
Reduces a collection to a single value by iteratively combining elements of the collection using the provided function.
inherited
singleWhere(bool test(Flag<ApplicationFlags> element), {Flag<ApplicationFlags> orElse()?}) Flag<ApplicationFlags>
The single element that satisfies test.
inherited
skip(int count) Iterable<Flag<ApplicationFlags>>
Creates an Iterable that provides all but the first count elements.
inherited
skipWhile(bool test(Flag<ApplicationFlags> value)) Iterable<Flag<ApplicationFlags>>
Creates an Iterable that skips leading elements while test is satisfied.
inherited
take(int count) Iterable<Flag<ApplicationFlags>>
Creates a lazy iterable of the count first elements of this iterable.
inherited
takeWhile(bool test(Flag<ApplicationFlags> value)) Iterable<Flag<ApplicationFlags>>
Creates a lazy iterable of the leading elements satisfying test.
inherited
toList({bool growable = true}) List<Flag<ApplicationFlags>>
Creates a List containing the elements of this Iterable.
inherited
toSet() Set<Flag<ApplicationFlags>>
Creates a Set containing the same elements as this iterable.
inherited
toString() String
A string representation of this object.
inherited
where(bool test(Flag<ApplicationFlags> element)) Iterable<Flag<ApplicationFlags>>
Creates a new lazy Iterable with all elements that satisfy the predicate test.
inherited
whereType<T>() Iterable<T>
Creates a new lazy Iterable with all elements that have type T.
inherited

Operators

operator &(Flags<ApplicationFlags> other) Flags<ApplicationFlags>
Return a set of flags that has all the flags set in both this and other.
inherited
operator ==(Object other) bool
The equality operator.
inherited
operator ^(Flags<ApplicationFlags> other) Flags<ApplicationFlags>
Return a set of flags that has all the flags set in this or in other but not in both.
inherited
operator |(Flags<ApplicationFlags> other) Flags<ApplicationFlags>
Return a set of flags that has all the flags set in either this or other.
inherited
operator ~() Flags<ApplicationFlags>
Returns the opposite of this set of flags.
inherited

Constants

applicationAutoModerationRuleCreateBadge → const Flag<ApplicationFlags>
Indicates if an app uses the Auto Moderation API.
applicationCommandBadge → const Flag<ApplicationFlags>
Indicates if an app has registered global application commands.
embedded → const Flag<ApplicationFlags>
Indicates if an app is embedded within the Discord client (currently unavailable publicly).
gatewayGuildMembers → const Flag<ApplicationFlags>
Intent required for bots in 100 or more servers to receive member-related events like guild_member_add. See the list of member-related events under GUILD_MEMBERS.
gatewayGuildMembersLimited → const Flag<ApplicationFlags>
Intent required for bots in under 100 servers to receive member-related events like guild_member_add, found on the Bot page in your app's settings. See the list of member-related events under GUILD_MEMBERS.
gatewayMessageContent → const Flag<ApplicationFlags>
Intent required for bots in 100 or more servers to receive message content.
gatewayMessageContentLimited → const Flag<ApplicationFlags>
Intent required for bots in under 100 servers to receive message content, found on the Bot page in your app's settings.
gatewayPresence → const Flag<ApplicationFlags>
Intent required for bots in 100 or more servers to receive presence_update events.
gatewayPresenceLimited → const Flag<ApplicationFlags>
Intent required for bots in under 100 servers to receive presence_update events, found on the Bot page in your app's settings.
verificationPendingGuildLimit → const Flag<ApplicationFlags>
Indicates unusual growth of an app that prevents verification.