get method

Future<Map?> get()

Implementation

Future<Map?> get() async {
  Logs.debug(
      "////////////////////////////// GET STORE ////////////////////////////");
  Map<String, dynamic>? store = await box?.getAllValues();
  Logs.debug(store);
  return store;
}