You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
final user = {
'id':48856307306397697,
'accountId':1967,
};
final dir =awaitgetApplicationDocumentsDirectory();
final box =awaitHive.openBox("test", path: dir.path);
// ⚠️ readUser.id will be 48856307306397696 next launch timefinal readUser = box.get("user");
// write user
box.put('user', user);
await box.flush();
// readUser.id will be correctfinal readUser2 = box.get("user");
// readUser2.id will be 48856307306397697
issure version:
hive 2.2.3
hive 3.0.0-dev
hive 4.0.0-dev.2: this version work well
The text was updated successfully, but these errors were encountered:
issure version:
hive 4.0.0-dev.2: this version work well
The text was updated successfully, but these errors were encountered: