mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-07 19:49:29 +00:00
11 lines
306 B
Dart
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(' ', '_');
|
|
}
|