mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 19:19:28 +00:00
8 lines
169 B
Dart
8 lines
169 B
Dart
import 'package:flutter/foundation.dart' show immutable;
|
|
|
|
|
|
@immutable
|
|
class AppMetadata {
|
|
const AppMetadata._();
|
|
static const String appName = 'Whispering Pages';
|
|
}
|