PokeDex/lib/Consts.dart
2025-03-22 21:28:20 -07:00

7 lines
152 B
Dart

import 'dart:io';
class Constants {
static const VERSION = "1.0.032225+2127";
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
}