pub package

hive_module

this module is a wrapper for the hive package, it provides a simple way to use hive in juneflow project.

Installation

  1. If the juneflow project doesn't exist, please create it by following this guide.
  2. 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