retrieve method

Future retrieve(
  1. String key
)

Implementation

Future<dynamic> retrieve(String key) async {
  assert(_box != null, 'the store is not connected');

  return _box!.get(key);
}