destroy static method

Future<void> destroy()

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);
  }
}