Clears all data from the storage.
@override Future<void> clear() async { if (await _root.exists()) { await _root.delete(recursive: true); } await _root.create(recursive: true); }