Adjusted constant name

This commit is contained in:
2026-01-16 21:41:42 +01:00
parent 1b709707b5
commit b7930d5e2e
6 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ class Constants {
Constants._(); // Private constructor to prevent instantiation
/// Minimum duration of all app skeletons
static const Duration minimumSkeletonDuration = Duration(milliseconds: 250);
static const Duration MINIMUM_SKELETON_DURATION = Duration(milliseconds: 250);
/// Maximum length for player names
static const int MAX_PLAYER_NAME_LENGTH = 32;