13 lines
349 B
Dart
13 lines
349 B
Dart
/// Configuration de la version de l'application
|
|
class AppVersion {
|
|
static const String version = '1.1.18';
|
|
|
|
/// Retourne la version complète de l'application
|
|
static String get fullVersion => 'v$version';
|
|
|
|
|
|
/// Retourne la version avec un préfixe personnalisé
|
|
static String getVersionWithPrefix(String prefix) => '$prefix $version';
|
|
}
|
|
|