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'; static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_'); }