LCStatusQuery class

LCQuery of LCStatus to find someone's statuses.

Inheritance

Constructors

LCStatusQuery({String inboxType = LCStatus.InboxTypeDefault})
Constructs a LCQuery for LCStatus.

Properties

className String?
Which className to query.
getter/setter pairinherited
condition ↔ _LCCompositionalCondition
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
inboxType String
See LCStatus.inboxType
getter/setter pair
maxCacheAge Duration?
getter/setter pairinherited
maxId int
Queries LCStatus whose messageId is not greater than this.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sinceId int
Queries LCStatus whose messageId is greater than this.
getter/setter pair

Methods

addAscendingOrder(String key) LCQuery<LCStatus>
Also sorts the results in ascending order by the given key.
inherited
addDescendingOrder(String key) LCQuery<LCStatus>
Also sorts the results in descending order by the given key.
inherited
count() Future<int>
Counts the number of results.
inherited
find({CachePolicy cachePolicy = CachePolicy.onlyNetwork}) Future<List<LCStatus>>
See LCQuery.find.
override
first() Future<LCStatus?>
Retrieves at most one LCObject matching this query.
inherited
get(String objectId) Future<LCStatus?>
Constructs a LCObject whose objectId is already known.
inherited
include(String key) LCQuery<LCStatus>
Includes nested LCObject for the provided key.
inherited
includeACL(bool value) LCQuery<LCStatus>
Includes the ALC or not.
inherited
limit(int amount) LCQuery<LCStatus>
Sets the limit of the number of results to return.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
orderByAscending(String key) LCQuery<LCStatus>
inherited
orderByDescending(String key) LCQuery<LCStatus>
inherited
select(String keys) LCQuery<LCStatus>
Restricts the keys of the LCObject returned.
inherited
skip(int amount) LCQuery<LCStatus>
Sets the amount of results to skip before returning any results.
inherited
toString() String
A string representation of this object.
inherited
whereContainedIn(String key, Iterable values) LCQuery<LCStatus>
The value of key must be contained in values.
inherited
whereContains(String key, String subString) LCQuery<LCStatus>
inherited
whereContainsAll(String key, Iterable values) LCQuery<LCStatus>
The array key must contain all values.
inherited
whereDoesNotExist(String key) LCQuery<LCStatus>
The LCObject must not contain the given key.
inherited
whereDoesNotMatchQuery(String key, LCQuery<LCObject> query) LCQuery<LCStatus>
The value of key must not match query.
inherited
whereEndsWith(String key, String suffix) LCQuery<LCStatus>
inherited
whereEqualTo(String key, dynamic value) LCQuery<LCStatus>
inherited
whereExists(String key) LCQuery<LCStatus>
The LCObject must contain the given key.
inherited
whereGreaterThan(String key, dynamic value) LCQuery<LCStatus>
inherited
whereGreaterThanOrEqualTo(String key, dynamic value) LCQuery<LCStatus>
inherited
whereLessThan(String key, dynamic value) LCQuery<LCStatus>
inherited
whereLessThanOrEqualTo(String key, dynamic value) LCQuery<LCStatus>
inherited
whereMatches(String key, String regex, {String? modifiers}) LCQuery<LCStatus>
inherited
whereMatchesQuery(String key, LCQuery<LCObject> query) LCQuery<LCStatus>
The value of key must match query.
inherited
whereNear(String key, LCGeoPoint point) LCQuery<LCStatus>
inherited
whereNotContainedIn(String key, Iterable values) LCQuery<LCStatus>
The value of key must not be contained in values.
inherited
whereNotEqualTo(String key, dynamic value) LCQuery<LCStatus>
inherited
whereRelatedTo(LCObject parent, String key) LCQuery<LCStatus>
inherited
whereSizeEqualTo(String key, int size) LCQuery<LCStatus>
inherited
whereStartsWith(String key, String prefix) LCQuery<LCStatus>
inherited
whereWithinGeoBox(String key, LCGeoPoint southwest, LCGeoPoint northeast) LCQuery<LCStatus>
inherited
whereWithinKilometers(String key, LCGeoPoint point, double maxDistance) LCQuery<LCStatus>
inherited
whereWithinMiles(String key, LCGeoPoint point, double maxDistance) LCQuery<LCStatus>
inherited
whereWithinRadians(String key, LCGeoPoint point, double maxDistance) LCQuery<LCStatus>
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited