EntryList class
A list of query results.
This class provides methods to access and manipulate a list of entries retrieved from the Askar store.
Constructors
- EntryList({required EntryListHandle handle})
- Constructs an instance of EntryList.
Properties
- handle → EntryListHandle
-
The handle for the entry list.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- length → int
-
Gets the length of the entry list.
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
find(
bool cb(Entry entry, int index)) → Entry? - Finds an entry in the list that matches the given condition.
-
forEachEntry(
void fn(Entry entry, int index)) → void - Iterates over the entry list.
-
getEntryByIndex(
int index) → Entry - Fetches an entry by its index.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toArray(
{bool valuesAreJson = false}) → List< EntryObject> - Converts the entry list to an array of EntryObject.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited