get static method

Future<String> get(
  1. String key
)

Implementation

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