read static method

Future<String?> read({
  1. required String key,
})

Implementation

static Future<String?> read({required String key}) async {
  return await _storage.read(key: key);
}