BoolListAdapter class

Adapter for lists of booleans.

Stores boolean lists as base64-encoded binary data. Format: first 4 bytes = length, following bytes = 8 booleans per byte.

Inheritance

Constructors

BoolListAdapter.new()
const

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

decode(String? base64String) List<bool>?
Decodes a value of storage type TStore back to type T.
override
encode(List<bool> value) String
Encodes a value of type T to the storage type TStore.
override
getter(SharedPreferencesAsync prefs, String key) Future<List<bool>?>
Retrieves a value of type T from SharedPreferences.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setter(SharedPreferencesAsync prefs, String key, List<bool> value) Future<void>
Stores a value of type T in SharedPreferences.
inherited
toString() String
A string representation of this object.
inherited

Operators

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