hive_module 1.0.6
hive_module: ^1.0.6 copied to clipboard
this module is a wrapper for the hive package, it provides a simple way to use hive in juneflow project.
hive_module #
this module is a wrapper for the hive package, it provides a simple way to use hive in juneflow project.
Installation #
- If the juneflow project doesn't exist, please create it by following this guide.
- open terminal in the juneflow project root directory, enter the following command.
june add hive_module
Usage #
Hive.box().put('key', 123);
int value = Hive.box().get('key');
print(value); // 123