JeaDB class

Constructors

JeaDB()

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

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

Static Methods

clearAll() Future<bool>
Remove all the keys.
get(String key) Future<String>
Call a String value you sent with get via key.
getKeys() Future<Set<String>>
Get all the keys.
remove(String key) Future<bool>
Remove specific the key.
set(String key, String value) Future<void>
Using SharedPreferences, it saves the value given to the
local database as String. If you are going to send a list,
convert the list to an encrypted String using JeaFire.encode
and then save the data using this function. Use get
to retrieve data. If you sent encrypted data, decrypt it using JeaFire.decode.