getItem method

Future<String?> getItem(
  1. String key
)

Implementation

Future<String?> getItem(String key) async {
  return _lazyBox.get(key);
}