GroupQuery class
NOTE: GroupQuery, as of Destiny 2, has essentially two totally different and incompatible "modes". If you are querying for a group, you can pass any of the properties below. If you are querying for a Clan, you MUST NOT pass any of the following properties (they must be null or undefined in your request, not just empty string/default values):
- groupMemberCountFilter - localeFilter - tagText If you pass these, you will get a useless InvalidParameters error.
- Annotations
-
- @JsonSerializable()
Constructors
- GroupQuery()
-
GroupQuery.fromJson(Map<
String, dynamic> json) -
factory
Properties
- creationDate ↔ GroupDateRange?
-
getter/setter pair
- currentPage ↔ int?
-
getter/setter pair
- groupMemberCountFilter ↔ int?
-
getter/setter pair
- groupType ↔ GroupType?
-
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- itemsPerPage ↔ int?
-
getter/setter pair
- localeFilter ↔ String?
-
getter/setter pair
- name ↔ String?
-
getter/setter pair
- requestContinuationToken ↔ String?
-
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- sortBy ↔ GroupSortBy?
-
getter/setter pair
- tagText ↔ String?
-
getter/setter pair
Methods
-
asyncToJson(
) → Future< Map< String, dynamic> > -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
asyncFromJson(
Map< String, dynamic> json) → Future<GroupQuery>