get method

Future get(
  1. String key
)

Implementation

Future<dynamic> get(String key) async {
  LazyBox box = await hiveLazy("c$name");
  return box.get(key);
}