BatchResult class

Result object for batch retrieval of settings values.

This class encapsulates the results of a batch retrieval operation, containing values in the same order as the requested keys for each supported type (string, bool, int, large int, double).

Also see:

Constructors

BatchResult({required List<String> stringValues, required List<bool> boolValues, required List<int> intValues, required List<int> largeIntValues, required List<double> doubleValues})
Creates a BatchResult with the given maps of values.

Properties

boolValues List<bool>
Retrieved boolean values in request order.
final
doubleValues List<double>
Retrieved double values in request order.
final
hashCode int
The hash code for this object.
no setterinherited
intValues List<int>
Retrieved 32-bit integer values in request order.
final
largeIntValues List<int>
Retrieved 64-bit integer values in request order.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringValues List<String>
Retrieved string values in request order.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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