1
0
forked from baron/baron-sso
Files
baron-sso/userfront/test/helpers/web_storage_stub.dart

22 lines
362 B
Dart

class WebStorage {
bool get isWeb => false;
String? get(String key) => null;
void set(String key, String value) {}
String? getSession(String key) => null;
void setSession(String key, String value) {}
void removeSession(String key) {}
void clearSession() {}
void remove(String key) {}
void clear() {}
}
final webStorage = WebStorage();