Vaani/lib/settings/constants.dart
2024-06-16 22:24:32 -04:00

11 lines
306 B
Dart

import 'package:flutter/foundation.dart' show immutable;
@immutable
class AppMetadata {
const AppMetadata._();
// TODO: use the packageinfo package to get the app name
static const String appName = 'Whispering Pages';
static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_');
}