flutter_chat_types 2.1.0
flutter_chat_types: ^2.1.0 copied to clipboard
Utility library for the flutter_chat_ui and flutter_firebase_chat_core libraries which contains shared type declarations.
example/main.dart
import 'package:flutter_chat_types/flutter_chat_types.dart' show TextMessage;
void main() {
const message = TextMessage(authorId: 'authorId', id: 'id', text: 'text');
print(message.toJson());
final json = {'authorId': 'authorId', 'id': 'id', 'text': 'text'};
print(TextMessage.fromJson(json).toJson());
}