PokeDex/lib/Session.dart
2025-03-23 19:56:54 -07:00

6 lines
129 B
Dart

import 'package:pokedex/filters.dart';
class SessionData {
static bool darkMode = false;
static int filter = Filters.All;
}