Files
MessagingApp/lib/components/constants.dart
T
onasanya.lanre 1ba9e981e1 Messaging
Implemented Chat Screens, Profile Pages, Search Pages
WIP: User profile, new chat button
Intended: Groups, Calls, Voice Messages
Properly deleting chats, offline storage of messages
2025-03-26 13:41:56 +00:00

18 lines
576 B
Dart

class Constants {
static Constants instance = Constants();
var endPoint = 'https://api.theonasanyas.com/v1';
var projectId = '67833160000cb0801fdb';
// var endPoint = 'https://cloud.appwrite.io/v1';
// var projectId = '678bdc7c00203eff8af5';
var selfSigned = false;
var databaseId = '678c8659000a7d6b5bff';
var userCollectionId = '678c865e002fe1cddd06';
var chatsCollectionId = '678c866c0038822276ad';
var convCollectionId = '678c8667001944dee794';
var conversationLinkId = '67b949c9001234c0d7b1';
var imageStorageBucket = '678d2162002a6770aaad';
}