config static method

void config({
  1. bool isPersistent = false,
  2. String? storeName,
})

Implementation

static void config({
  bool isPersistent = false,
  String? storeName,
}) async {
  persistent = isPersistent;
  hiveBox = storeName;
}