mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 11:09:28 +00:00
14 lines
360 B
Dart
14 lines
360 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 = 'Vaani';
|
|
|
|
// for deeplinking
|
|
static const String appScheme = 'vaani';
|
|
|
|
static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_');
|
|
}
|