destroy static method
Implementation
static Future<void> destroy() async {
final keys = _p.getKeys().where((k) => k.startsWith('wt_session_')).toList();
for (final key in keys) {
await _p.remove(key);
}
}
static Future<void> destroy() async {
final keys = _p.getKeys().where((k) => k.startsWith('wt_session_')).toList();
for (final key in keys) {
await _p.remove(key);
}
}