read static method

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

Implementation

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