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