readValue method

Future<String> readValue(
  1. String key
)

Read value

Implementation

Future<String> readValue(String key) async {
  return await storage.read(
        key: key,
        iOptions: _getIosOptions(),
        aOptions: _getAndroidOptions(),
      ) ??
      '';
}