mirror of
https://github.com/Iconica-Development/flutter_chat.git
synced 2025-05-18 18:33:49 +02:00
374 B
374 B
Firebase chat repository
The firebase implementation of the chat_repository_interface
Usage
chatService: ChatService(
chatRepository: FirebaseChatRepository(
chatCollection: 'chats',
messageCollection: 'messages',
mediaPath: 'chat',
),
userRepository: FirebaseUserRepository(
userCollection: 'users',
),
),