cofounderella/lib/constants.dart

17 lines
518 B
Dart

class Constants {
Constants._();
/// Title of the app
static const String appTitle = "Cofounderella";
static const String dbCollectionUsers = 'Users';
static const String dbCollectionLanguages = 'languages';
static const String dbCollectionChatRooms = 'chat_rooms';
static const String dbCollectionMessages = 'messages';
static const String dbFieldUsersGender = 'gender';
static const String dbFieldUsersYearBorn = 'born';
static const String pathLanguagesJson = 'lib/assets/languages.json';
}